Given an integer array `nums` of length 9, return the largest value in the array. This is variant **#4** — arrays may include negative numbers.
Example 1
Input: nums = [-8,-1,6,13,20,27,34,41,48]
Output: 48
Constraints
Acceptance: 66% · Topics: array, iteration