Implement a method that finds the largest number in an array of integers.
For the array [43, -19, 75, 1]:
Complete the solve method that takes an array of numbers and returns the largest value in that array.
75 is the largest number in the array
-1 is the largest number among negative numbers
When there's only one number, it's the largest by default