leetcode 1.Two Sum 、167. Two Sum II - Input array is sorted 、15. 3Sum 、16. 3Sum Closest 、 18. 4Su...

 1.two sum 用hash來存儲數值和對應的位置索引,通過target-當前值來獲得需要的值,然後再hash中尋找 錯誤代碼1: Input: [3,2,4] 6 Output: [0,0] Expected: [1,2] 同一個數字不能重複使用,但這個代碼沒排除這個問題 class Solution { public: vector<int> twoSum(vector<int>&
相關文章
相關標籤/搜索