EasyArray· 71% acceptance
#43

Find Maximum Element 43

Easy

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

Example 1

Input: nums = [12,19,26,33,40,47,54,61]

Output: 61

Constraints

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

Acceptance: 71% · Topics: array, iteration

findMax

← All practice problems