解题思路:
第一个方法是穷举,第二个方法是利用Map做,第二个方法一开始没想到,还是有点太年轻。
代码:
第一个代码:
class Solution { public int[] twoSum(int[] nums, int target) { int[] ans = new int[2]; boolean flag = false; for(int i=0;i
第二个代码:
class Solution { public int[] twoSum(int[] nums, int target) { Mapmap = new HashMap<>(); for(int i=0;i