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 2adc6e8

Browse files
docs: update README.md
1 parent aeb2bb6 commit 2adc6e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ Here you can find solutions in JavaScript and Python languages for problems from
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 |
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]() |
3535
| 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0217_contains_duplicate.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0217_contains_duplicate.py) |
36-
| 231 | [Power Of Two](https://leetcode.com/problems/power-of-two/) | Think of Bit Manipulations | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0231_power_of_two.js) | Python Solution |
36+
| 231 | [Power Of Two](https://leetcode.com/problems/power-of-two/) | Think of Bit Manipulations | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0231_power_of_two.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0231_power_of_two.py) |
3737
| 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0242_valid_anagram.js) | Python Solution |
3838
| 263 | [Ugly Number](https://leetcode.com/problems/ugly-number/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0263_ugly_number.js) | Python Solution |
3939
| 264 | [Ugly Number II](https://leetcode.com/problems/ugly-number-ii/) | Dynamic Programming | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0264_ugly_number_II.js) | Python Solution |
4040
| 268 | [Missing Number](https://leetcode.com/problems/missing-number/) | Bit Manipulation is One of the Options | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0268_missing_number.js) | Python Solution |
4141
| 300 | [Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/) | Compare two last nums in sequence and subsequence. If both are equal, length of LIS is increased by 1 | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0300_longest_increasing_subsequence.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0300_longest_common_subsequence.py) |
4242
| 322 | [Coin Change](https://leetcode.com/problems/coin-change/) | Think how to use a knapsack problem | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0322_coin_change.js) | [Python Solution]() |
43-
| 326 | [Power of Three](https://leetcode.com/problems/power-of-three/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0326_power_of_three.js) | Python Solution |
44-
| 342 | [Power of Four](https://leetcode.com/problems/power-of-four/) | Bit Manipulations | [JS Solutions](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0342_power_of_four.js) | Python Solution |
43+
| 326 | [Power of Three](https://leetcode.com/problems/power-of-three/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0326_power_of_three.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0326_power_of_three.py) |
44+
| 342 | [Power of Four](https://leetcode.com/problems/power-of-four/) | Bit Manipulations | [JS Solutions](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0342_power_of_four.js) | [Python Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/python_solutions/0342_power_of_four.py) |
4545
| 344 | [Reverse String](https://leetcode.com/problems/reverse-string/) | The entire logic for reversing a string is based on using the opposite directional two-pointer approach | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0344_reverse_string.js) | [Python Solution]() |
4646
| 345 | [Reverse Vowels of a String](https://leetcode.com/problems/reverse-vowels-of-a-string/) | | [JS Solution](https://github.com/Saimon398/leetcode-solutions/blob/main/js_solutions/0345_reverse_vowels_of_a_string.js) | [Python Solution]() |
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 |

0 commit comments

Comments
(0)

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