EasyArray· 72% acceptance
#10

Find Maximum Element 10

Easy

Given an integer array `nums` of length n, return the largest value in the array. This is variant **#10** — arrays may include negative numbers.

Example 1

Input: nums = [10,17,24,31,38,45,52,59,66,73,-17,-10,-3,4,11]

Output: 73

Constraints

  • 1 <= nums.length <= 10^4
  • -10^4 <= nums[i] <= 10^4

Acceptance: 72% · Topics: array, iteration

findMax

← All practice problems