Skip to content

Commit 59a5519

Browse files
committed
Update README - Topic Tags
source:598a629e64320baa5e1bc7e91d9be0cd81ab823e
1 parent c61435c commit 59a5519

1 file changed

Lines changed: 150 additions & 0 deletions

File tree

공예영/7주차/README.md

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
A collection of LeetCode questions to ace the coding interview! - Created using [LeetHub v2](https://github.com/arunbhardwaj/LeetHub-2.0)
2+
<!---LeetCode Topics Start-->
3+
# LeetCode Topics
4+
## Array
5+
| |
6+
| ------- |
7+
| [0001-two-sum](https://github.com/yeyounging/Algorithm/tree/master/0001-two-sum) |
8+
| [0011-container-with-most-water](https://github.com/yeyounging/Algorithm/tree/master/0011-container-with-most-water) |
9+
| [0014-longest-common-prefix](https://github.com/yeyounging/Algorithm/tree/master/0014-longest-common-prefix) |
10+
| [0049-group-anagrams](https://github.com/yeyounging/Algorithm/tree/master/0049-group-anagrams) |
11+
| [0055-jump-game](https://github.com/yeyounging/Algorithm/tree/master/0055-jump-game) |
12+
| [0078-subsets](https://github.com/yeyounging/Algorithm/tree/master/0078-subsets) |
13+
| [0088-merge-sorted-array](https://github.com/yeyounging/Algorithm/tree/master/0088-merge-sorted-array) |
14+
| [0121-best-time-to-buy-and-sell-stock](https://github.com/yeyounging/Algorithm/tree/master/0121-best-time-to-buy-and-sell-stock) |
15+
| [0238-product-of-array-except-self](https://github.com/yeyounging/Algorithm/tree/master/0238-product-of-array-except-self) |
16+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
17+
| [0704-binary-search](https://github.com/yeyounging/Algorithm/tree/master/0704-binary-search) |
18+
## Hash Table
19+
| |
20+
| ------- |
21+
| [0001-two-sum](https://github.com/yeyounging/Algorithm/tree/master/0001-two-sum) |
22+
| [0013-roman-to-integer](https://github.com/yeyounging/Algorithm/tree/master/0013-roman-to-integer) |
23+
| [0049-group-anagrams](https://github.com/yeyounging/Algorithm/tree/master/0049-group-anagrams) |
24+
| [0242-valid-anagram](https://github.com/yeyounging/Algorithm/tree/master/0242-valid-anagram) |
25+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
26+
## String
27+
| |
28+
| ------- |
29+
| [0013-roman-to-integer](https://github.com/yeyounging/Algorithm/tree/master/0013-roman-to-integer) |
30+
| [0014-longest-common-prefix](https://github.com/yeyounging/Algorithm/tree/master/0014-longest-common-prefix) |
31+
| [0020-valid-parentheses](https://github.com/yeyounging/Algorithm/tree/master/0020-valid-parentheses) |
32+
| [0022-generate-parentheses](https://github.com/yeyounging/Algorithm/tree/master/0022-generate-parentheses) |
33+
| [0043-multiply-strings](https://github.com/yeyounging/Algorithm/tree/master/0043-multiply-strings) |
34+
| [0049-group-anagrams](https://github.com/yeyounging/Algorithm/tree/master/0049-group-anagrams) |
35+
| [0125-valid-palindrome](https://github.com/yeyounging/Algorithm/tree/master/0125-valid-palindrome) |
36+
| [0242-valid-anagram](https://github.com/yeyounging/Algorithm/tree/master/0242-valid-anagram) |
37+
| [0392-is-subsequence](https://github.com/yeyounging/Algorithm/tree/master/0392-is-subsequence) |
38+
## Sorting
39+
| |
40+
| ------- |
41+
| [0049-group-anagrams](https://github.com/yeyounging/Algorithm/tree/master/0049-group-anagrams) |
42+
| [0088-merge-sorted-array](https://github.com/yeyounging/Algorithm/tree/master/0088-merge-sorted-array) |
43+
| [0242-valid-anagram](https://github.com/yeyounging/Algorithm/tree/master/0242-valid-anagram) |
44+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
45+
## Two Pointers
46+
| |
47+
| ------- |
48+
| [0011-container-with-most-water](https://github.com/yeyounging/Algorithm/tree/master/0011-container-with-most-water) |
49+
| [0088-merge-sorted-array](https://github.com/yeyounging/Algorithm/tree/master/0088-merge-sorted-array) |
50+
| [0125-valid-palindrome](https://github.com/yeyounging/Algorithm/tree/master/0125-valid-palindrome) |
51+
| [0392-is-subsequence](https://github.com/yeyounging/Algorithm/tree/master/0392-is-subsequence) |
52+
## Dynamic Programming
53+
| |
54+
| ------- |
55+
| [0022-generate-parentheses](https://github.com/yeyounging/Algorithm/tree/master/0022-generate-parentheses) |
56+
| [0055-jump-game](https://github.com/yeyounging/Algorithm/tree/master/0055-jump-game) |
57+
| [0121-best-time-to-buy-and-sell-stock](https://github.com/yeyounging/Algorithm/tree/master/0121-best-time-to-buy-and-sell-stock) |
58+
| [0392-is-subsequence](https://github.com/yeyounging/Algorithm/tree/master/0392-is-subsequence) |
59+
## Stack
60+
| |
61+
| ------- |
62+
| [0020-valid-parentheses](https://github.com/yeyounging/Algorithm/tree/master/0020-valid-parentheses) |
63+
## Binary Search
64+
| |
65+
| ------- |
66+
| [0704-binary-search](https://github.com/yeyounging/Algorithm/tree/master/0704-binary-search) |
67+
## Linked List
68+
| |
69+
| ------- |
70+
| [0021-merge-two-sorted-lists](https://github.com/yeyounging/Algorithm/tree/master/0021-merge-two-sorted-lists) |
71+
| [0206-reverse-linked-list](https://github.com/yeyounging/Algorithm/tree/master/0206-reverse-linked-list) |
72+
## Recursion
73+
| |
74+
| ------- |
75+
| [0021-merge-two-sorted-lists](https://github.com/yeyounging/Algorithm/tree/master/0021-merge-two-sorted-lists) |
76+
| [0206-reverse-linked-list](https://github.com/yeyounging/Algorithm/tree/master/0206-reverse-linked-list) |
77+
## Tree
78+
| |
79+
| ------- |
80+
| [0104-maximum-depth-of-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0104-maximum-depth-of-binary-tree) |
81+
| [0226-invert-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0226-invert-binary-tree) |
82+
## Depth-First Search
83+
| |
84+
| ------- |
85+
| [0104-maximum-depth-of-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0104-maximum-depth-of-binary-tree) |
86+
| [0226-invert-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0226-invert-binary-tree) |
87+
## Breadth-First Search
88+
| |
89+
| ------- |
90+
| [0104-maximum-depth-of-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0104-maximum-depth-of-binary-tree) |
91+
| [0226-invert-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0226-invert-binary-tree) |
92+
## Binary Tree
93+
| |
94+
| ------- |
95+
| [0104-maximum-depth-of-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0104-maximum-depth-of-binary-tree) |
96+
| [0226-invert-binary-tree](https://github.com/yeyounging/Algorithm/tree/master/0226-invert-binary-tree) |
97+
## Math
98+
| |
99+
| ------- |
100+
| [0007-reverse-integer](https://github.com/yeyounging/Algorithm/tree/master/0007-reverse-integer) |
101+
| [0013-roman-to-integer](https://github.com/yeyounging/Algorithm/tree/master/0013-roman-to-integer) |
102+
| [0043-multiply-strings](https://github.com/yeyounging/Algorithm/tree/master/0043-multiply-strings) |
103+
## Divide and Conquer
104+
| |
105+
| ------- |
106+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
107+
## Heap (Priority Queue)
108+
| |
109+
| ------- |
110+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
111+
## Bucket Sort
112+
| |
113+
| ------- |
114+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
115+
## Counting
116+
| |
117+
| ------- |
118+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
119+
## Quickselect
120+
| |
121+
| ------- |
122+
| [0347-top-k-frequent-elements](https://github.com/yeyounging/Algorithm/tree/master/0347-top-k-frequent-elements) |
123+
## Trie
124+
| |
125+
| ------- |
126+
| [0014-longest-common-prefix](https://github.com/yeyounging/Algorithm/tree/master/0014-longest-common-prefix) |
127+
## Greedy
128+
| |
129+
| ------- |
130+
| [0011-container-with-most-water](https://github.com/yeyounging/Algorithm/tree/master/0011-container-with-most-water) |
131+
| [0055-jump-game](https://github.com/yeyounging/Algorithm/tree/master/0055-jump-game) |
132+
## Backtracking
133+
| |
134+
| ------- |
135+
| [0022-generate-parentheses](https://github.com/yeyounging/Algorithm/tree/master/0022-generate-parentheses) |
136+
| [0077-combinations](https://github.com/yeyounging/Algorithm/tree/master/0077-combinations) |
137+
| [0078-subsets](https://github.com/yeyounging/Algorithm/tree/master/0078-subsets) |
138+
## Prefix Sum
139+
| |
140+
| ------- |
141+
| [0238-product-of-array-except-self](https://github.com/yeyounging/Algorithm/tree/master/0238-product-of-array-except-self) |
142+
## Simulation
143+
| |
144+
| ------- |
145+
| [0043-multiply-strings](https://github.com/yeyounging/Algorithm/tree/master/0043-multiply-strings) |
146+
## Bit Manipulation
147+
| |
148+
| ------- |
149+
| [0078-subsets](https://github.com/yeyounging/Algorithm/tree/master/0078-subsets) |
150+
<!---LeetCode Topics End-->

0 commit comments

Comments
 (0)