Skip to content

Commit

Permalink
fix: convert leetcode problem ids from 3 to 4 digits
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzrehde committed May 8, 2024
1 parent 05ed740 commit ed962d8
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Each of the code solution files contains the problem description, several (diffe

| # | Difficulty | Problem Title | Implementation |
|:--|:-----------|:--------------|:---------------|
| 1 | Easy | [Two Sum](https://leetcode.com/problems/two-sum/) | [Python](./leetcode/001-two-sum/two_sum.py) |
| 2 | Medium | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | [Python](./leetcode/002-add-two-numbers/add_two_numbers.py) |
| 3 | Medium | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Python](./leetcode/003-longest-substring-without-repeating-characters/longest_substring_without_repeating_characters.py) |
| 5 | Medium | [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) | [Python](./leetcode/005-longest-palindromic-substring/longest_palindromic_substring.py) |
| 22 | Medium | [Generate Parentheses](https://leetcode.com/problems/generate-parentheses/) | [Python](./leetcode/022-generate-parentheses/generate_parentheses.py) |
| 53 | Medium | [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/) | [Python](./leetcode/053-maximum-subarray/maximum_subarray.py) |
| 70 | Easy | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs/) | [Python](./leetcode/070-climbing-stairs/climbing_stairs.py) |
| 1 | Easy | [Two Sum](https://leetcode.com/problems/two-sum/) | [Python](./leetcode/0001-two-sum/two_sum.py) |
| 2 | Medium | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | [Python](./leetcode/0002-add-two-numbers/add_two_numbers.py) |
| 3 | Medium | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Python](./leetcode/0003-longest-substring-without-repeating-characters/longest_substring_without_repeating_characters.py) |
| 5 | Medium | [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) | [Python](./leetcode/0005-longest-palindromic-substring/longest_palindromic_substring.py) |
| 22 | Medium | [Generate Parentheses](https://leetcode.com/problems/generate-parentheses/) | [Python](./leetcode/0022-generate-parentheses/generate_parentheses.py) |
| 53 | Medium | [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/) | [Python](./leetcode/0053-maximum-subarray/maximum_subarray.py) |
| 70 | Easy | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs/) | [Python](./leetcode/0070-climbing-stairs/climbing_stairs.py) |


## [Hackerrank](https://www.hackerrank.com)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ed962d8

Please sign in to comment.