EasyArray· 65% acceptance
#3

Find Maximum Element 3

Easy

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

Example 1

Input: nums = [-11,-4,3,10,17,24,31,38]

Output: 38

Constraints

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

Acceptance: 65% · Topics: array, iteration

findMax

← All practice problems