Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions