Skip to content

Commit 97c2664

Browse files
committed
Update README.md
1 parent b0bc8fe commit 97c2664

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* [String](#string)
77
* [Linked List](#linked-list)
88
* [Tree](#tree)
9+
* [Depth-first search](#depth-first-search)
910
* [Math](#math)
1011
* [Search](#search)
1112
* [Sort](#sort)
@@ -53,7 +54,6 @@
5354
[Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/)| [Swift](./LinkedList/MergeKSortedLists.swift)| Hard|
5455
[Partition List](https://leetcode.com/problems/partition-list/)| [Swift](./LinkedList/PartitionList.swift)| Medium|
5556

56-
5757
## Tree
5858
| Title | Solution | Difficulty |
5959
| ----- | -------- | ---------- |
@@ -69,6 +69,12 @@
6969
[Path Sum](https://leetcode.com/problems/path-sum/)| [Swift](./Tree/PathSum.swift)| Easy|
7070
[Path Sum II](https://leetcode.com/problems/path-sum-ii/)| [Swift](./Tree/PathSumII.swift)| Medium|
7171

72+
## Depth-first search
73+
[Permutations](https://leetcode.com/problems/permutations/)| [Swift](./DFS/Permutations.swift)| Medium|
74+
[Permutations II](https://leetcode.com/problems/permutations-ii/)| [Swift](./DFS/PermutationsII.swift)| Medium|
75+
[Subsets](https://leetcode.com/problems/subsets/)| [Swift](./DFS/Subsets.swift)| Medium|
76+
[Subsets II](https://leetcode.com/problems/subsets-ii/)| [Swift](./DFS/SubsetsII.swift)| Medium|
77+
7278
## Math
7379
| Title | Solution | Difficulty |
7480
| ----- | -------- | ---------- |

0 commit comments

Comments
 (0)