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
Input
nums = [-4,-2,1,4,8]Output
1The closest number to 0 in the array is 1.
Example 2
Input
nums = [2,-1,1]Output
11 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