Question: Write a function named GetLargestNum that takes a list of numbers as a parameter and returns the largest number in the list. You can assume
Write a function named GetLargestNum that takes a list of numbers as a parameter and returns the largest number in the list. You can assume the list contains at least one element. See below for examples.
GetLargestNum([3, 8, 4, 6]) -> 8
GetLargestNum([-5, 10, 10, 6]) -> 10
GetLargestNum([9]) -> 9
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
