Skip to content

Commit 72e58a9

Browse files
committed
Fix formatting inconsistencies in README.md
1 parent b73ffc1 commit 72e58a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Note that this license applies only to my solution code and not to the LeetCode
3333
| Problem | Solution | Approach |
3434
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------:|:-----------------------------------|
3535
| 🟒 1. [Two Sum](https://leetcode.com/problems/two-sum/) | [πŸ¦€](src/problems/p0001_two_sum.rs) | Hash Map |
36-
| 🟠 3. [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [πŸ¦€](src/problems/p0003_longest_substring_without_repeating_characters.rs) | HashMap, Two Pointers |
36+
| 🟠 3. [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [πŸ¦€](src/problems/p0003_longest_substring_without_repeating_characters.rs) | Hash Map, Two Pointers |
3737
| 🟒 13. [Roman to Integer](https://leetcode.com/problems/roman-to-integer/) | [πŸ¦€](src/problems/p0013_roman_to_integer.rs) | |
3838
| 🟒 20. [Valid Parentheses](https://leetcode.com/problems/valid-parentheses/) | [πŸ¦€](src/problems/p0020_valid_parentheses.rs) | Stack |
3939
| 🟒 21. [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | [πŸ¦€](src/problems/p0021_merge_two_sorted_lists.rs) | |
40-
| 🟠 33. [Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/) | [πŸ¦€](src/problems/p0033_search_in_rotated_sorted_array.rs) | Binary search |
40+
| 🟠 33. [Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/) | [πŸ¦€](src/problems/p0033_search_in_rotated_sorted_array.rs) | Binary Search |
4141
| 🟠 39. [Combination Sum](https://leetcode.com/problems/combination-sum/) | [πŸ¦€](src/problems/p0039_combination_sum.rs) | Backtracking |
4242
| 🟠 96. [Unique Binary Search Trees](https://leetcode.com/problems/unique-binary-search-trees/) | [πŸ¦€](src/problems/p0096_unique_binary_search_trees.rs) | Dynamic Programming |
4343
| πŸ”΄ 126. [Word Ladder II](https://leetcode.com/problems/word-ladder-ii/) | [πŸ¦€](src/problems/p0126_word_ladder_ii.rs) | Breadth-First Search |
@@ -46,10 +46,10 @@ Note that this license applies only to my solution code and not to the LeetCode
4646
| 🟒 263. [Ugly Number](https://leetcode.com/problems/ugly-number/) | [πŸ¦€](src/problems/p0263_ugly_number.rs) | |
4747
| 🟒 504. [Base 7](https://leetcode.com/problems/base-7/) | [πŸ¦€](src/problems/p0504_base_7.rs) | |
4848
| πŸ”΄ 552. [Student Attendance Record II](https://leetcode.com/problems/student-attendance-record-ii/) | [πŸ¦€](src/problems/p0552_student_attendance_record_ii.rs) | Dynamic Programming |
49-
| 🟒 599. [Minimum Index Sum of Two Lists](https://leetcode.com/problems/minimum-index-sum-of-two-lists/) | [πŸ¦€](src/problems/p0599_minimum_index_sum_of_two_lists.rs) | HashMap |
49+
| 🟒 599. [Minimum Index Sum of Two Lists](https://leetcode.com/problems/minimum-index-sum-of-two-lists/) | [πŸ¦€](src/problems/p0599_minimum_index_sum_of_two_lists.rs) | Hash Map |
5050
| 🟒 645. [Set Mismatch](https://leetcode.com/problems/set-mismatch/) | [πŸ¦€](src/problems/p0645_set_mismatch.rs) | |
5151
| 🟠 707. [Design Linked List](https://leetcode.com/problems/design-linked-list/) | [πŸ¦€](src/problems/p0707_design_linked_list.rs) | |
52-
| 🟠 739. [Daily Temperatures](https://leetcode.com/problems/daily-temperatures/) | [πŸ¦€](src/problems/p0739_daily_temperatures.rs) | Monotonic stack |
52+
| 🟠 739. [Daily Temperatures](https://leetcode.com/problems/daily-temperatures/) | [πŸ¦€](src/problems/p0739_daily_temperatures.rs) | Monotonic Stack |
5353
| 🟠 797. [All Paths From Source to Target](https://leetcode.com/problems/all-paths-from-source-to-target/) | [πŸ¦€](src/problems/p0797_all_paths_from_source_to_target.rs) | Depth-First Search |
5454
| 🟒 905. [Sort Array By Parity](https://leetcode.com/problems/sort-array-by-parity/) | [πŸ¦€](src/problems/p0905_sort_array_by_parity.rs) | |
5555
| 🟠 954. [Array of Doubled Pairs](https://leetcode.com/problems/array-of-doubled-pairs/) | [πŸ¦€](src/problems/p0954_array_of_doubled_pairs.rs) | |

0 commit comments

Comments
Β (0)