Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/noodleslove/leetcode

My leetcode solutions repository
https://github.com/noodleslove/leetcode

bfs dfs leetcode leetcode-python leetcode-solutions personal string-manipulation two-pointers

Last synced: about 1 month ago
JSON representation

My leetcode solutions repository

Awesome Lists containing this project

README

        

My Leetcode Solutions
===

#### LeetCode Algorithm

| # | Title | Link | Language | File Location | Difficulty | Date |
|----:|:--------------------------------------------------------|:---------------------------------------------------------------------------------------|:-----------|:-------------------------------------------------------------------------|:-------------|:-----------|
| 704 | Binary Search | https://leetcode.com/problems/binary-search/ | Python | ./python/0704.binary-search.py | Easy | 03-24-2023 |
| 977 | Squares of a Sorted Array | https://leetcode.com/problems/squares-of-a-sorted-array/ | Python | ./python/0977.squares-of-a-sorted-array.py | Easy | 03-24-2023 |
| 278 | First Bad Version | https://leetcode.com/problems/first-bad-version/ | Python | ./python/0278.first-bad-version.py | Easy | 03-24-2023 |
| 35 | Search Insert Position | https://leetcode.com/problems/search-insert-position/ | Python | ./python/0035.search-insert-position.py | Easy | 03-24-2023 |
| 148 | Sort List | https://leetcode.com/problems/sort-list/ | Python | ./python/0148.sort-list.py | Medium | 03-24-2023 |
| 189 | Rotate Array | https://leetcode.com/problems/rotate-array/ | Python | ./python/0189.rotate-array.py | Medium | 03-24-2023 |
| 283 | Move Zeros | https://leetcode.com/problems/move-zeroes/ | Python | ./python/0283.move-zeroes.py | Easy | 03-25-2023 |
| 167 | Two Sum II Input Array is Sorted | https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/ | Python | ./python/0167.two-sum-ii-input-array-is-sorted.py | Medium | 03-25-2023 |
| 151 | Reverse Words in a String | https://leetcode.com/problems/reverse-words-in-a-string/ | Python | ./python/0151.reverse-words-in-a-string.py | Medium | 03-25-2023 |
| 165 | Compare Version Numbers | https://leetcode.com/problems/compare-version-numbers/ | Python | ./python/0165.compare-version-numbers.py | Medium | 03-25-2023 |
| 142 | Linked List Cycle II | https://leetcode.com/problems/linked-list-cycle-ii/ | Python | ./python/0142.linked-list-cycle-ii.py | Medium | 03-26-2023 |
| 344 | Reverse String | https://leetcode.com/problems/reverse-string/ | Python | ./python/0344.reverse-string.py | Easy | 03-28-2023 |
| 557 | Reverse Words in a String III | https://leetcode.com/problems/reverse-words-in-a-string-iii/ | Python | ./python/0557.reverse-words-in-a-string-iii.py | Easy | 03-28-2023 |
| 34 | Find First and Last Position of Element in Sorted Array | https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/ | Python | ./python/0034.find-first-and-last-position-of-element-in-sorted-array.py | Medium | 03-28-2023 |
| 945 | Design a Stack with Increment Operation | https://leetcode.com/problems/design-a-stack-with-increment-operation/ | Python | ./python/1381.design-a-stack-with-increment-operation.py | Medium | 03-29-2023 |
| 56 | Merge Intervals | https://leetcode.com/problems/merge-intervals/ | Python | ./python/0056.merge-intervals.py | Medium | 04-02-2023 |
| 79 | Word Search | https://leetcode.com/problems/word-search/ | Python | ./python/0079.word-search.py | Medium | 04-04-2023 |
| 3 | Longest Substring Without Repeating Characters | https://leetcode.com/problems/longest-substring-without-repeating-characters/ | Python | ./python/0003.longest-substring-without-repeating-characters.py | Medium | 04-06-2023 |