File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Problems 0001-1000
2
+
3
+ ## Algorithms
4
+
5
+ * [ Hash Table] ( #hash-table )
6
+
7
+ ## Hash Table
8
+
9
+ | # | Title | Solution | Time | Space | Difficulty | Tag | Note|
10
+ | -----| ---------------- | --------------- | --------------- | --------------- | ------------- | --------------| -----|
11
+ | 0001| [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ C#] ( ./C#/1-Two_Sum.cs ) | $O(n)$| $O(n)$| Easy|||
12
+ | 0049| [ Group Anagrams] ( https://leetcode.com/problems/group-anagrams/ ) | [ C#] ( ./C#/49-Group_Anagrams.cs ) | $O(n \cdot m \cdot log(m))$| $O(n \cdot m)$| Medium|||
13
+ | 0217| [ Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/ ) | [ C#] ( ./C#/217-Contains_Duplicate.cs ) | $O(n)$| $O(n)$| Easy|||
Original file line number Diff line number Diff line change 8
8
9
9
## Solutions
10
10
11
- * TBA
11
+ * [ 0001-1000 ] ( ./0001-1000.md )
12
12
13
13
## Acknowledgements
14
14
You can’t perform that action at this time.
0 commit comments