Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 353 Bytes

File metadata and controls

27 lines (14 loc) · 353 Bytes

Largest Number in Array

Write a function that finds and returns the largest number from a given array of integers.


Example:

Input: [3, 7, 2, 9, 5] Output: 9

Input: [10, 200, 30, 80] Output: 200


Problem added by

SaadQasim19


Solution

Click here to see the solution