Given an integer array `nums` of length n, return the largest value in the array. This is variant **#51** — arrays may include negative numbers.
Example 1
Input: nums = [36,43,50,57,64,71,-19,-12,-5,2,9,16,23,30,37,44]
Output: 71
Constraints
Acceptance: 62% · Topics: array, iteration