@@ -6,13 +6,13 @@ Welcome to my LeetCode solutions repository! 🚀 Here, I solve coding challenge
66
77| # | Title | Solution | Tags | Difficulty |
88| ---| ----- | -------- | ---------- | ---- |
9- | 0001| [ Two Sum] ( https://leetcode.com/problems/two-sum/description/ ) | [ Python] ( ./array_hashing/0001-two-sum.py ) | Easy | Array, Hash Table |
10- | 0020| [ Valid Parentheses] ( https://leetcode.com/problems/valid-parentheses/description/ ) | [ Python] ( ./stack/0020-valid-parentheses.py ) | Easy | String, Stack |
11- | 0049| [ Group Anagrams] ( https://leetcode.com/problems/group-anagrams/description/ ) | [ Python] ( ./array_hashing/0049-group-anagrams.py ) | Medium | Array, Hash Table, String, Sorting |
12- | 0125| [ Valid Palindrome] ( https://leetcode.com/problems/valid-palindrome/description/ ) | [ Python] ( ./two_pointers/0125-valid-palindrome.py ) | Easy | Two Pointers, String |
13- | 0217| [ Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/description/ ) | [ Python] ( ./array_hashing/0217-contains-duplicate.py ) | Easy | Array, Hash Table, Sorting |
14- | 0242| [ Valid Anagram] ( https://leetcode.com/problems/valid-anagram/description/ ) | [ Python] ( ./array_hashing/0242-valid-anagram.py ) | Easy | Hash Table, String, Sorting |
15- | 0347| [ Top K Frequent Elements] ( https://leetcode.com/problems/top-k-frequent-elements/description/ ) | [ Python] ( ./array_hashing/0347-top-k-frequent-elements.py ) | Medium | Array, Hash Table, Divide and Conquer, Sorting, Heap (Priority Queue), Bucket Sort, Counting, Quickselect |
9+ | 0001| [ Two Sum] ( https://leetcode.com/problems/two-sum/description/ ) | [ Python] ( ./array_hashing/0001-two-sum.py ) | Array, Hash Table | Easy |
10+ | 0020| [ Valid Parentheses] ( https://leetcode.com/problems/valid-parentheses/description/ ) | [ Python] ( ./stack/0020-valid-parentheses.py ) | String, Stack | Easy |
11+ | 0049| [ Group Anagrams] ( https://leetcode.com/problems/group-anagrams/description/ ) | [ Python] ( ./array_hashing/0049-group-anagrams.py ) | Array, Hash Table, String, Sorting | Medium |
12+ | 0125| [ Valid Palindrome] ( https://leetcode.com/problems/valid-palindrome/description/ ) | [ Python] ( ./two_pointers/0125-valid-palindrome.py ) | Two Pointers, String | Easy |
13+ | 0217| [ Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/description/ ) | [ Python] ( ./array_hashing/0217-contains-duplicate.py ) | Array, Hash Table, Sorting | Easy |
14+ | 0242| [ Valid Anagram] ( https://leetcode.com/problems/valid-anagram/description/ ) | [ Python] ( ./array_hashing/0242-valid-anagram.py ) | Hash Table, String, Sorting | Easy |
15+ | 0347| [ Top K Frequent Elements] ( https://leetcode.com/problems/top-k-frequent-elements/description/ ) | [ Python] ( ./array_hashing/0347-top-k-frequent-elements.py ) | Array, Hash Table, Divide and Conquer, Sorting, Heap (Priority Queue), Bucket Sort, Counting, Quickselect | Medium |
1616
1717## 🚀 Keep Coding & Stay Motivated!
1818
0 commit comments