Given an integer array `nums` of length n, return the largest value in the array. This is variant **#19** — arrays may include negative numbers.
Example 1
Input: nums = [37,44,51,58,65,72,-18,-11,-4,3,10,17,24,31,38,45,52,59,66,73,-17,-10,-3,4]
Output: 73
Constraints
Acceptance: 64% · Topics: array, iteration