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