EasyArray· 69% acceptance
#7

Find Maximum Element 7

Easy

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

Example 1

Input: nums = [1,8,15,22,29,36,43,50,57,64,71,-19]

Output: 71

Constraints

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

Acceptance: 69% · Topics: array, iteration

findMax

← All practice problems