欢喜小懒虫

文章
5
资源
0
加入时间
2年10月24天

几道Easy算法

1 两数之和思路:使用一个HashMap集合存储每一个元素和对应下标。 public int[] twoSum(int[] nums, int target) { HashMap<Integer,Integer> map=new HashMap<>(); for(int i=0;i<nums.length;i++){ ...