EasyArray· 68% acceptance
#40

Find Maximum Element 40

Easy

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

Example 1

Input: nums = [3,10,17,24,31]

Output: 31

Constraints

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

Acceptance: 68% · Topics: array, iteration

findMax

← All practice problems