Given an integer array `nums` of length n, return the largest value in the array. This is variant **#52** — arrays may include negative numbers.
Example 1
Input: nums = [39,46,53,60,67,74,-16,-9,-2,5,12,19,26,33,40,47,54]
Output: 74
Constraints
Acceptance: 63% · Topics: array, iteration