File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
* [ String] ( #string )
7
7
* [ Linked List] ( #linked-list )
8
8
* [ Tree] ( #tree )
9
+ * [ Depth-first search] ( #depth-first-search )
9
10
* [ Math] ( #math )
10
11
* [ Search] ( #search )
11
12
* [ Sort] ( #sort )
53
54
[ Merge k Sorted Lists] ( https://leetcode.com/problems/merge-k-sorted-lists/ ) | [ Swift] ( ./LinkedList/MergeKSortedLists.swift ) | Hard|
54
55
[ Partition List] ( https://leetcode.com/problems/partition-list/ ) | [ Swift] ( ./LinkedList/PartitionList.swift ) | Medium|
55
56
56
-
57
57
## Tree
58
58
| Title | Solution | Difficulty |
59
59
| ----- | -------- | ---------- |
69
69
[ Path Sum] ( https://leetcode.com/problems/path-sum/ ) | [ Swift] ( ./Tree/PathSum.swift ) | Easy|
70
70
[ Path Sum II] ( https://leetcode.com/problems/path-sum-ii/ ) | [ Swift] ( ./Tree/PathSumII.swift ) | Medium|
71
71
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
+
72
78
## Math
73
79
| Title | Solution | Difficulty |
74
80
| ----- | -------- | ---------- |
You can’t perform that action at this time.
0 commit comments