Given an integer array `nums` of length n, return the largest value in the array. This is variant **#25** — arrays may include negative numbers.
Example 1
Input: nums = [55,62,69,76,-14,-7,0,7,14,21,28,35,42,49,56,63,70,-20,-13,-6,1,8,15,22,29,36,43,50,57,64]
Output: 76
Constraints
Acceptance: 70% · Topics: array, iteration