Given an integer array `nums` of length 10, return the largest value in the array. This is variant **#5** — arrays may include negative numbers.
Example 1
Input: nums = [-5,2,9,16,23,30,37,44,51,58]
Output: 58
Constraints
Acceptance: 67% · Topics: array, iteration