EasyArray· 70% acceptance
#42

Find Maximum Element 42

Easy

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

Example 1

Input: nums = [9,16,23,30,37,44,51]

Output: 51

Constraints

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

Acceptance: 70% · Topics: array, iteration

findMax

← All practice problems