Given an integer array `nums` of length 9, return the largest value in the array. This is variant **#44** — arrays may include negative numbers.
Example 1
Input: nums = [15,22,29,36,43,50,57,64,71]
Output: 71
Constraints
Acceptance: 72% · Topics: array, iteration