EasyArray· 78% acceptance
#50

Find Maximum Element 50

Easy

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

Example 1

Input: nums = [33,40,47,54,61,68,75,-15,-8,-1,6,13,20,27,34]

Output: 75

Constraints

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

Acceptance: 78% · Topics: array, iteration

findMax

← All practice problems