Given an integer array `nums` of length n, return the largest value in the array. This is variant **#13** — arrays may include negative numbers.
Example 1
Input: nums = [19,26,33,40,47,54,61,68,75,-15,-8,-1,6,13,20,27,34,41]
Output: 75
Constraints
Acceptance: 75% · Topics: array, iteration