Given an integer array `nums` of length 8, return the largest value in the array. This is variant **#3** — arrays may include negative numbers.
Example 1
Input: nums = [-11,-4,3,10,17,24,31,38]
Output: 38
Constraints
Acceptance: 65% · Topics: array, iteration