Given an integer array `nums` of length 8, return the largest value in the array. This is variant **#43** — arrays may include negative numbers.
Example 1
Input: nums = [12,19,26,33,40,47,54,61]
Output: 61
Constraints
Acceptance: 71% · Topics: array, iteration