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