摘要: [40. 组合总和 II](https://leetcode.cn/problems/combination-sum-ii/) ## 方法:回溯 ### 解题思路 - 如何去重? - 答:对相同的元素进行统一的处理,即枚举当前操作选几个该元素。 ### 代码 ```cpp class Solutio 阅读全文
posted @ 2023-08-01 21:41 lixycc 阅读(23) 评论(0) 推荐(0)