EasyArray· 77% acceptance
#49

Find Maximum Element 49

Easy

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

Example 1

Input: nums = [30,37,44,51,58,65,72,-18,-11,-4,3,10,17,24]

Output: 72

Constraints

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

Acceptance: 77% · Topics: array, iteration

findMax

← All practice problems