leetcode简单题

1 两数之和 public int[] twoSum(int[] nums, int target) { int[] answer=new int[2]; int a; HashMap<Integer,Integer> map=new HashMap<Integer, Integer>(); for(int i=0;i<n
相关文章
相关标签/搜索