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