Given an integer array `nums` of length n, return the largest value in the array. This is variant **#54** — arrays may include negative numbers.
Example 1
Input: nums = [45,52,59,66,73,-17,-10,-3,4,11,18,25,32,39,46,53,60,67,74]
Output: 74
Constraints
Acceptance: 65% · Topics: array, iteration