开始做高级算法(leetcode book)里面的还有每日一题,以后应该都会更新每日一题,还有高级算法相关的内容,之后计划是top100
剑指offer 46-50
剑指offer 41-45
剑指offer 36-40
剑指offer 31-35
剑指offer 26-30
剑指offer 19-24
剑指offer 14-18
三数之和给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 请你找出所有满足条件且不重复的三元组。
注意:答案中不可以包含重复的三元组。
示例:
给定数组 nums = [-1, 0, 1, 2, -1, -4],
满足要求的三元组集合为:[ [-1, 0, 1], [-1, -1, 2]]
作者:力扣 (LeetCode)链接:https://leetcode-cn.com/leetbook/read/top-interview-questions-medium/xvpj16/来源:力扣(LeetCode)
...
到初级的动态规划