JuniorArray

Find Closest Number to Zero

Given an integer array nums of size n, return the number with the value closest to 0 in nums. If there are multiple answers, return the number with the largest value.

Example 1
Inputnums = [-4,-2,1,4,8]
Output1
The closest number to 0 in the array is 1.
Example 2
Inputnums = [2,-1,1]
Output1
1 and -1 are both the closest numbers to 0, so 1 being larger is returned.

Constraints

  • 1 <= n <= 1000
  • -10^5 <= nums[i] <= 10^5

Asked at 6 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate