LeetCode 0090. Subsets II子集II【Python】

2020-11-27
阅读 1 分钟
188
Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set).

LeetCode 0078. Subsets子集【Python】

2020-10-24
阅读 1 分钟
169
Given a set of distinct integers, nums, return all possible subsets (the power set).

LeetCode | 0051. N-Queens N 皇后【Python】

2020-09-10
阅读 3 分钟
190
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.

LeetCode | 0040. Combination Sum II组合总和 II【Python】

2020-09-10
阅读 2 分钟
173
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.