Given an integer array `nums` of length 7, return the largest value in the array. This is variant **#2** — arrays may include negative numbers.
Example 1
Input: nums = [-14,-7,0,7,14,21,28]
Output: 28
Constraints
Acceptance: 64% · Topics: array, iteration