Skip to content

Commit

Permalink
78
Browse files Browse the repository at this point in the history
  • Loading branch information
lzl124631x committed Feb 13, 2022
1 parent 529f978 commit 829cf05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions leetcode/78. Subsets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public:
};
```
## Solution 2. Backtrack
## Solution 2. Backtracking
```cpp
// OJ: https://leetcode.com/problems/subsets
Expand Down Expand Up @@ -97,7 +97,7 @@ public:
};
```

## Solution 3. Bit Mask
## Solution 3. Bitmask

```cpp
// OJ: https://leetcode.com/problems/subsets
Expand Down

0 comments on commit 829cf05

Please sign in to comment.