Given an integer array `nums` of length n, return the largest value in the array. This is variant **#9** — arrays may include negative numbers.
Example 1
Input: nums = [7,14,21,28,35,42,49,56,63,70,-20,-13,-6,1]
Output: 70
Constraints
Acceptance: 71% · Topics: array, iteration