Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9cd9cad

Browse files
docs: update README.md
1 parent f754310 commit 9cd9cad

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
@@ -25,10 +25,10 @@ Here you can find solutions in JavaScript and Python languages for problems from
2525
| 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/) | You can easily solve this problem if you simply think about two elements at a time rather than two arrays. We know that each of the individual arrays is sorted. What we don't know is how they will intertwine. Can we take a local decision and arrive at an optimal solution? | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0088_merge_sorted_array.js) | Python Solution |
2626
| 122 | [Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/) | What should we do every time there is a valley followed by a peak in price? | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0122_best_time_to_buy_and_sell_stocks.js) | Python Solution |
2727
| 125 | [Valid Palindrome](https://leetcode.com/problems/valid-palindrome/) | Use Two Pointers | [JS Solutions](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0125_valid_palindrome.js) | [Python Solution]() |
28-
| 136 | [Single Number](https://leetcode.com/problems/single-number/) | Use Bit Manipulations (XOR) | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0136_single_number.js) | Python Solution |
28+
| 136 | [Single Number](https://leetcode.com/problems/single-number/) | Use Bit Manipulations (XOR) | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0136_single_number.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0136_single_number.py) |
2929
| 151 | [Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0151_reverse_words_in_a_string.js) | Python Solution |
3030
| 169 | [Majority Element](https://leetcode.com/problems/majority-element/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0169_majority_element.js) | Python Solution |
31-
| 191 | [Number of 1 Bits](https://leetcode.com/problems/number-of-1-bits/) | Use Bit Manipulations | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0191_number_of_1_bits.js) | Python Solution |
31+
| 191 | [Number of 1 Bits](https://leetcode.com/problems/number-of-1-bits/) | Use Bit Manipulations | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0191_number_of_1_bits.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0191_number_of_1_bits.py) |
3232
| 202 | [Happy Number](https://leetcode.com/problems/happy-number/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0202_happy_number.js) | Python Solution |
3333
| 204 | [Count Primes](https://leetcode.com/problems/count-primes/) | Use Sieve of Eratosthenes. | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0204_count_primes.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0204_count_primes.py) |
3434
| 206 | [Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0206_reverse_linked_list.js) | [Python Solution]() |
@@ -47,10 +47,10 @@ Here you can find solutions in JavaScript and Python languages for problems from
4747
| 367 | [Valid Perfect Square](https://leetcode.com/problems/valid-perfect-square/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0367_valid_perfect_square.js) | Python Solution |
4848
| 389 | [Find The Difference](https://leetcode.com/problems/find-the-difference/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0389_find_the_difference.js) | Python Solution |
4949
| 392 | [Is Subsequence](https://leetcode.com/problems/is-subsequence/) | Use two pointers to iterate through the two strings simultaneously. | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0392_is_subsequence.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0392_is_subsequence.py) |
50-
| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz/) | The first non-standard value must satisfy both conditions. | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0412_fizz_buzz.js) | Python Solution |
50+
| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz/) | The first non-standard value must satisfy both conditions. | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0412_fizz_buzz.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0412_fizz_buzz.py) |
5151
| 421 | [Maximum XOR of Two Numbers in an Array](https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0421_maximum_xor_of_two_numbers_in_an_array.js) | Python Solution |
5252
| 451 | [Sort Characters By Frequency](https://leetcode.com/problems/sort-characters-by-frequency/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0451_sort_characters_by_frequency.js) | Python Solution |
53-
| 461 | [Hamming Distance](https://leetcode.com/problems/hamming-distance/) | Bit Manipulation (XOR) | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0461_hamming_distance.js) | Python Solution |
53+
| 461 | [Hamming Distance](https://leetcode.com/problems/hamming-distance/) | Bit Manipulation (XOR) | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0461_hamming_distance.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0461_hamming_distance.py) |
5454
| 504 | [Base 7](https://leetcode.com/problems/base-7/) | Gorner's algorithm can help with this problem | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0504_base7.js) | Python Solution |
5555
| 516 | [Longest Palindromic Subsequence](https://leetcode.com/problems/longest-palindromic-subsequence/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0516_longest_palindromic_subsequence.js) | [Python Solution]() |
5656
| 557 | [Reverse Words in a String III](https://leetcode.com/problems/reverse-words-in-a-string-iii/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0557_reverse_words_in_a_string_III.js) | Python Solution |

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /