2239. 找到最接近 0 的数字

题目

给你一个长度为 n 的整数数组 nums ,请你返回 nums 中最 接近 0 的数字。如果有多个答案,请你返回它们中的 最大值

示例1:

1
2
3
4
5
6
7
8
9
输入:nums = [-4,-2,1,4,8]
输出:1
解释:
-4 到 0 的距离为 |-4| = 4 。
-2 到 0 的距离为 |-2| = 2 。
1 到 0 的距离为 |1| = 1 。
4 到 0 的距离为 |4| = 4 。
8 到 0 的距离为 |8| = 8 。
所以,数组中距离 0 最近的数字为 1 。

示例2:

1
2
3
输入:nums = [2,-1,1]
输出:1
解释:1 和 -1 都是距离 0 最近的数字,所以返回较大值 1 。

提示:

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

解法

解法一:

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public int findClosestNumber(int[] nums) {
int res = Integer.MAX_VALUE;
int count = Integer.MAX_VALUE;
for (int num : nums) {
int temp = Math.abs(num);
if (temp <= count) {
if (temp == count) {
res = Math.max(num, res);
} else {
res = num;
}
}
count = Math.min(count, temp);
}
return res;
}
0%