Given an integer array `nums` of length n, return the largest value in the array. This is variant **#11** — arrays may include negative numbers.
Example 1
Input: nums = [13,20,27,34,41,48,55,62,69,76,-14,-7,0,7,14,21]
Output: 76
Constraints
Acceptance: 73% · Topics: array, iteration