题目链接https://www.acwing.com/problem/content/description/71/
思路:利用数据结构 set接口 已经实现了的hash表,动态判断
- 利用set的经典案例
class Solution {
public int[] findNumbersWithSum(int[] nums, int target) {
Set <Integer> set = new HashSet<>();
for(int x: nums){
int y= target-x;
if(set.contains(y)){
return new int[]{y,x};
}
set.add(x);
}
return null;
}
};