返回介绍

solution / 2200-2299 / 2239.Find Closest Number to Zero / README_EN

发布于 2024-06-17 01:03:08 字数 3092 浏览 0 评论 0 收藏 0

2239. Find Closest Number to Zero

中文文档

Description

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: 1
Explanation:
The distance from -4 to 0 is |-4| = 4.
The distance from -2 to 0 is |-2| = 2.
The distance from 1 to 0 is |1| = 1.
The distance from 4 to 0 is |4| = 4.
The distance from 8 to 0 is |8| = 8.
Thus, the closest number to 0 in the array is 1.

Example 2:

Input: nums = [2,-1,1]
Output: 1
Explanation: 1 and -1 are both the closest numbers to 0, so 1 being larger is returned.

 

Constraints:

  • 1 <= n <= 1000
  • -105 <= nums[i] <= 105

Solutions

Solution 1

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
class Solution {
  public int findClosestNumber(int[] nums) {
    int ans = 0, d = 1 << 30;
    for (int x : nums) {
      int y = Math.abs(x);
      if (y < d || (y == d && x > ans)) {
        ans = x;
        d = y;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int findClosestNumber(vector<int>& nums) {
    int ans = 0, d = 1 << 30;
    for (int x : nums) {
      int y = abs(x);
      if (y < d || (y == d && x > ans)) {
        ans = x;
        d = y;
      }
    }
    return ans;
  }
};
func findClosestNumber(nums []int) int {
  ans, d := 0, 1<<30
  for _, x := range nums {
    if y := abs(x); y < d || (y == d && x > ans) {
      ans, d = x, y
    }
  }
  return ans
}

func abs(x int) int {
  if x < 0 {
    return -x
  }
  return x
}
function findClosestNumber(nums: number[]): number {
  let [ans, d] = [0, 1 << 30];
  for (const x of nums) {
    const y = Math.abs(x);
    if (y < d || (y == d && x > ans)) {
      [ans, d] = [x, y];
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文