【leetcode系列】【py3】【中等】三數之和

題目: 題目鏈接: https://leetcode-cn.com/problems/3sum/   解題思路: 雙指針 先對數組進行排序(快排),然後開始遍歷 先固定最左邊的一個數字,假設下標爲index 對固定數字的右半部分,使用雙指針遍歷,開始時的left= index + 1, right= len(nums) - 1 當前的三數之和sum = nums[index] + nums[lef
相關文章
相關標籤/搜索