Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
brightzoe committed Apr 9, 2024
1 parent f846f12 commit ab3f01d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 122 deletions.
121 changes: 0 additions & 121 deletions blog/2021-12-27-year-end-summary-of-2021.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/algorithm/backtracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ console.log(permute([1, 2, 3]));
[78. 子集 - 力扣(LeetCode)](https://leetcode.cn/problems/subsets/description/)⭐⭐⭐✨

- 组合问题。递归与回溯。
- 深度优先遍历。寻找变与不变。变的是每个组合的长度,不变的是可以选择的元素。所以
- 深度优先遍历。寻找变与不变。变的是每个组合的长度,不变的是可以选择的元素。

```ts
function subsets(nums: number[]): number[][] {
Expand Down

0 comments on commit ab3f01d

Please sign in to comment.