Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 649dc31

Browse files
committed
docs: Added solutions list and updated README.md
1 parent 60fb7a5 commit 649dc31

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

0001-1000.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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|||

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Solutions
1010

11-
* TBA
11+
* [0001-1000](./0001-1000.md)
1212

1313
## Acknowledgements
1414

0 commit comments

Comments
 (0)