EasyArray· 76% acceptance
#48

Find Maximum Element 48

Easy

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

Example 1

Input: nums = [27,34,41,48,55,62,69,76,-14,-7,0,7,14]

Output: 76

Constraints

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

Acceptance: 76% · Topics: array, iteration

findMax

← All practice problems