Find Closest Number to Zero — LeetCode 2239 Python Solution

EasyArray
Problem
#2239
Reading time
2 min

The problem

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

Input
nums = [-4,-2,1,4,8]
Output
1
Explanation
The distance from -4 to 0 is |-4| = 4.

Python solution

Python
class Solution:
    def findClosestNumber(self, nums: List[int]) -> int:
        ans, d = 0, inf
        for x in nums:
            if (y := abs(x)) < d or (y == d and x > ans):
                ans, d = x, y
        return ans

Complexity

MeasureComplexity
TimeO(n), where n is the length of the array
SpaceO(1) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2239. Find Closest Number to Zero?
LeetCode 2239. Find Closest Number to Zero is rated Easy on LeetCode.
What is the time complexity of LeetCode 2239. Find Closest Number to Zero?
The Python solution on this page runs in O(n), where n is the length of the array.
What is the space complexity of LeetCode 2239. Find Closest Number to Zero?
The Python solution on this page uses O(1) auxiliary space.
What topics does LeetCode 2239. Find Closest Number to Zero cover?
LeetCode 2239. Find Closest Number to Zero is tagged Array on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview