EasyArray· 77% acceptance
#15

Find Maximum Element 15

Easy

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

Example 1

Input: nums = [25,32,39,46,53,60,67,74,-16,-9,-2,5,12,19,26,33,40,47,54,61]

Output: 74

Constraints

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

Acceptance: 77% · Topics: array, iteration

findMax

← All practice problems