https://github.com/izzatkarimov/leetcode
my leetcode submissions
https://github.com/izzatkarimov/leetcode
data-structures-and-algorithms faang-interview interview-preparation leetcode leetcode-progress leetcode-solutions
Last synced: 8 months ago
JSON representation
my leetcode submissions
- Host: GitHub
- URL: https://github.com/izzatkarimov/leetcode
- Owner: izzatkarimov
- License: mit
- Created: 2024-03-17T12:09:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-26T20:09:29.000Z (8 months ago)
- Last Synced: 2025-01-26T20:22:47.517Z (8 months ago)
- Topics: data-structures-and-algorithms, faang-interview, interview-preparation, leetcode, leetcode-progress, leetcode-solutions
- Language: C++
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Leetcode Solutions
### Easy
| # | Title | Solution | Difficulty |
|-----|------------------------|-|----|
| 01 | [Two Sum](https://leetcode.com/problems/two-sum/description/) | [C++](./Easy/two_sum.cpp)| Easy |
| 20 | [Valid Parentheses](https://leetcode.com/problems/valid-parentheses/description/) | [C++](./Easy/20.valid_parentheses.cpp)| Easy |
| 26 | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/description/) | [C++](./Easy/26.remove_duplicates_from_sorted_array.cpp) | Easy |
| 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/description/) | [C++](./Easy/contains_duplicate.cpp)| Easy |
| 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram/description/) |[C++](./Easy/contains_duplicate.cpp)| Easy |
| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz/description/) |[C++](./Easy/412.fizzbuzz.cpp)| Easy |
| 1929| [Concatenation of Array](https://leetcode.com/problems/concatenation-of-array/description/) | [C++](./Easy/1929.concatenation_of_array.cpp) | Easy |### Medium
| # | Title | Solution | Difficulty |
|-----|------------------------|-|----|
| 22 | [Generate Parentheses](https://leetcode.com/problems/generate-parentheses/description/)| [C++](/Medium/22.generate_parentheses.cpp) | Medium |
| 36 | [Valid Sudoku](https://leetcode.com/problems/valid-sudoku/description/)| [C++](/Medium/36.valid_sudoku.cpp) | Medium |
| 49 | [Group Anagrams](https://leetcode.com/problems/group-anagrams/description/)| [C++](/Medium/49.group_anagrams.cpp) | Medium |
| 128 | [Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/description/)| [C++](/Medium/128.longest_consecutive_sequence.cpp) | Medium |
| 155 | [Min Stack](https://leetcode.com/problems/min-stack/description/)| [C++](/Medium/155.min_stack.cpp) | Medium |
| 248 | [Product of Array Except Selft](https://leetcode.com/problems/product-of-array-except-self/description/)| [C++](/Medium/248.product_of_array_except_self.cpp) | Medium |
| 347 | [Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/description/)| [C++](/Medium/347.top_k_frequent_elements.cpp) | Medium |### Hard
| # | Title | Solution | Difficulty |
|-----|------------------------|-|----|
| 42 | [Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water/description/)| [C++](/Hard/42.trapping_rain_water.cpp) | Hard |