EasyArray· 74% acceptance
#46

Find Maximum Element 46

Easy

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

Example 1

Input: nums = [21,28,35,42,49,56,63,70,-20,-13,-6]

Output: 70

Constraints

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

Acceptance: 74% · Topics: array, iteration

findMax

← All practice problems