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