|
86 | 86 | | 276 | 🔒 [Paint Fence](https://leetcode.com/problems/paint-fence) | Easy | |
|
87 | 87 | | 278 | [First Bad Version](https://leetcode.com/problems/first-bad-version) | Easy | [](src/FirstBadVersion.java) [](python/first_bad_version.py) |
|
88 | 88 | | 283 | [Move Zeroes](https://leetcode.com/problems/move-zeroes) | Easy | [](src/MoveZeros.java) [](python/move_zeroes.py) |
|
89 |
| -| 290 | [Word Pattern](https://leetcode.com/problems/word-pattern) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/WordPattern.java) [](python/word_pattern.py) | |
90 |
| -| 292 | [Nim Game](https://leetcode.com/problems/nim-game) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NimGame.java) [](python/nim_game.py) | |
| 89 | +| 290 | [Word Pattern](https://leetcode.com/problems/word-pattern) | Easy | [](src/WordPattern.java) [](python/word_pattern.py) | |
| 90 | +| 292 | [Nim Game](https://leetcode.com/problems/nim-game) | Easy | [](src/NimGame.java) [](python/nim_game.py) | |
91 | 91 | | 293 | 🔒 [Flip Game](https://leetcode.com/problems/flip-game) | Easy | |
|
92 |
| -| 299 | [Bulls and Cows](https://leetcode.com/problems/bulls-and-cows) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/BullsAndCows.java) [](python/bulls_and_cows.py) | |
93 |
| -| 303 | [Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RangeSumQueryImmutable.java) [](python/range_sum_query_immutable.py) | |
94 |
| -| 326 | [Power of Three](https://leetcode.com/problems/power-of-three) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/PowerOfThree.java) [](python/power_of_three.py) | |
| 92 | +| 299 | [Bulls and Cows](https://leetcode.com/problems/bulls-and-cows) | Easy | [](src/BullsAndCows.java) [](python/bulls_and_cows.py) | |
| 93 | +| 303 | [Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable) | Easy | [](src/RangeSumQueryImmutable.java) [](python/range_sum_query_immutable.py) | |
| 94 | +| 326 | [Power of Three](https://leetcode.com/problems/power-of-three) | Easy | [](src/PowerOfThree.java) [](python/power_of_three.py) | |
95 | 95 | | 339 | 🔒 [Nested List Weight Sum](https://leetcode.com/problems/nested-list-weight-sum) | Easy | |
|
96 |
| -| 342 | [Power of Four](https://leetcode.com/problems/power-of-four) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/PowerOf4.java) [](python/power_of_four.py) | |
97 |
| -| 344 | [Reverse A String](https://leetcode.com/problems/reverse-string) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ReverseString.java) [](python/reverse_a_string.py) | |
98 |
| -| 345 | [Reverse Vowels of A String](https://leetcode.com/problems/reverse-vowels-of-a-string) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ReverseVowelsOfString.java) [](python/reverse_vowels_of_a_string.py) | |
| 96 | +| 342 | [Power of Four](https://leetcode.com/problems/power-of-four) | Easy | [](src/PowerOf4.java) [](python/power_of_four.py) | |
| 97 | +| 344 | [Reverse A String](https://leetcode.com/problems/reverse-string) | Easy | [](src/ReverseString.java) [](python/reverse_a_string.py) | |
| 98 | +| 345 | [Reverse Vowels of A String](https://leetcode.com/problems/reverse-vowels-of-a-string) | Easy | [](src/ReverseVowelsOfString.java) [](python/reverse_vowels_of_a_string.py) | |
99 | 99 | | 346 | 🔒 [Moving Average From Data Stream](https://leetcode.com/problems/moving-average-from-data-stream) | Easy | |
|
100 |
| -| 349 | [Intersection of 2 Arrays](https://leetcode.com/problems/intersection-of-two-arrays) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/IntersectionOfTwoArrays.java) [](python/intersection_of_2_array.py) | |
101 |
| -| 350 | [Intersection of 2 Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/IntersectionOfTwoArraysII.java) [](python/intersection_of_2_arrays_II.py) | |
| 100 | +| 349 | [Intersection of 2 Arrays](https://leetcode.com/problems/intersection-of-two-arrays) | Easy | [](src/IntersectionOfTwoArrays.java) [](python/intersection_of_2_array.py) | |
| 101 | +| 350 | [Intersection of 2 Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii) | Easy | [](src/IntersectionOfTwoArraysII.java) [](python/intersection_of_2_arrays_II.py) | |
102 | 102 | | 359 | 🔒 [Logger Rate Limiter](https://leetcode.com/problems/logger-rate-limiter) | Easy | |
|
103 |
| -| 367 | [Valid Perfect Square](https://leetcode.com/problems/valid-perfect-square) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/IsPerfectSquare.java) [](python/valid_perfect_square.py) | |
104 |
| -| 374 | [Guess Number Higher or Lower](https://leetcode.com/problems/guess-number-higher-or-lower) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/GuessNumberHigherOrLower.java) [](python/guess_number_higher_or_lower.py) | |
105 |
| -| 383 | [Ransom Note](https://leetcode.com/problems/ransom-note) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RansomNote.java) [](python/ransom_note.py) | |
106 |
| -| 387 | [First Unique Character in String](https://leetcode.com/problems/first-unique-character-in-a-string) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/FirstUniqueCharacter.java) [](python/first_unique_character_in_string.py) | |
107 |
| -| 389 | [Find the Difference](https://leetcode.com/problems/find-the-difference) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/FindTheDifference.java) [](python/find_the_difference.py) | |
108 |
| -| 392 | [Is Subsequence](https://leetcode.com/problems/is-subsequence) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/IsSubsequence.java) [](python/is_subsequence.py) | |
109 |
| -| 401 | [Binary Watch](https://leetcode.com/problems/binary-watch) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/BinaryWatch.java) [](python/binary_watch.py) | |
110 |
| -| 404 | [Sum of Left Leaves](https://leetcode.com/problems/sum-of-left-leaves) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/SumOfLeftLeaves.java) [](python/sum_of_left_leaves.py) | |
111 |
| -| 405 | [Convert a Number to Hexadecimal](https://leetcode.com/problems/convert-a-number-to-hexadecimal) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ConvertNumberToHexadecimal.java) [](python/convert_a_number_to_hexadecimal.py) | |
| 103 | +| 367 | [Valid Perfect Square](https://leetcode.com/problems/valid-perfect-square) | Easy | [](src/IsPerfectSquare.java) [](python/valid_perfect_square.py) | |
| 104 | +| 374 | [Guess Number Higher or Lower](https://leetcode.com/problems/guess-number-higher-or-lower) | Easy | [](src/GuessNumberHigherOrLower.java) [](python/guess_number_higher_or_lower.py) | |
| 105 | +| 383 | [Ransom Note](https://leetcode.com/problems/ransom-note) | Easy | [](src/RansomNote.java) [](python/ransom_note.py) | |
| 106 | +| 387 | [First Unique Character in String](https://leetcode.com/problems/first-unique-character-in-a-string) | Easy | [](src/FirstUniqueCharacter.java) [](python/first_unique_character_in_string.py) | |
| 107 | +| 389 | [Find the Difference](https://leetcode.com/problems/find-the-difference) | Easy | [](src/FindTheDifference.java) [](python/find_the_difference.py) | |
| 108 | +| 392 | [Is Subsequence](https://leetcode.com/problems/is-subsequence) | Easy | [](src/IsSubsequence.java) [](python/is_subsequence.py) | |
| 109 | +| 401 | [Binary Watch](https://leetcode.com/problems/binary-watch) | Easy | [](src/BinaryWatch.java) [](python/binary_watch.py) | |
| 110 | +| 404 | [Sum of Left Leaves](https://leetcode.com/problems/sum-of-left-leaves) | Easy | [](src/SumOfLeftLeaves.java) [](python/sum_of_left_leaves.py) | |
| 111 | +| 405 | [Convert a Number to Hexadecimal](https://leetcode.com/problems/convert-a-number-to-hexadecimal) | Easy | [](src/ConvertNumberToHexadecimal.java) [](python/convert_a_number_to_hexadecimal.py) | |
112 | 112 | | 408 | 🔒 [Valid Word Abbreviation](https://leetcode.com/problems/valid-word-abbreviation) | Easy | |
|
113 |
| -| 409 | [Longest Palindrome](https://leetcode.com/problems/longest-palindrome) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/LongestPalindrome.java) [](python/longest_palindrome.py) | |
114 |
| -| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/FizzBuzz.java) [](python/fizz_buzz.py) | |
115 |
| -| 414 | [Third Maximum Number](https://leetcode.com/problems/third-maximum-number) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ThirdMaximumNumber.java) [](python/fizz_buzz.py) | |
116 |
| -| 415 | [Add Strings](https://leetcode.com/problems/add-strings) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/AddString.java) [](python/add_strings.py) | |
| 113 | +| 409 | [Longest Palindrome](https://leetcode.com/problems/longest-palindrome) | Easy | [](src/LongestPalindrome.java) [](python/longest_palindrome.py) | |
| 114 | +| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz) | Easy | [](src/FizzBuzz.java) [](python/fizz_buzz.py) | |
| 115 | +| 414 | [Third Maximum Number](https://leetcode.com/problems/third-maximum-number) | Easy | [](src/ThirdMaximumNumber.java) [](python/fizz_buzz.py) | |
| 116 | +| 415 | [Add Strings](https://leetcode.com/problems/add-strings) | Easy | [](src/AddString.java) [](python/add_strings.py) | |
117 | 117 | | 422 | 🔒 [Valid Word Square](https://leetcode.com/problems/valid-word-square) | Easy | |
|
118 |
| -| 434 | [Number of Segments in a String](https://leetcode.com/problems/number-of-segments-in-a-string) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NumberOfSegmentsInString.java) [](python/number_of_segments_in_a_string.py) | |
119 |
| -| 441 | [Arranging Coins](https://leetcode.com/problems/arranging-coins) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/ArrangingCoins.java) [](python/arranging_coins.py) | |
120 |
| -| 443 | [String Compression](https://leetcode.com/problems/string-compression) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/StringCompression.java) | |
121 |
| -| 447 | [Number of Boomerangs](https://leetcode.com/problems/number-of-boomerangs) | Easy | [](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NumberOfBoomerangs.java) | |
| 118 | +| 434 | [Number of Segments in a String](https://leetcode.com/problems/number-of-segments-in-a-string) | Easy | [](src/NumberOfSegmentsInString.java) [](python/number_of_segments_in_a_string.py) | |
| 119 | +| 441 | [Arranging Coins](https://leetcode.com/problems/arranging-coins) | Easy | [](src/ArrangingCoins.java) [](python/arranging_coins.py) | |
| 120 | +| 443 | [String Compression](https://leetcode.com/problems/string-compression) | Medium | [](src/StringCompression.java) | |
| 121 | +| 447 | [Number of Boomerangs](https://leetcode.com/problems/number-of-boomerangs) | Easy | [](src/NumberOfBoomerangs.java) | |
122 | 122 | | 448 | [Find All Numbers Disappeared in an Array](https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array) | Easy | [](src/FindAllNumbersDisappearedInAnArray.java) |
|
123 | 123 | | 453 | [Minimum Moves to Equal Array Elements](https://leetcode.com/problems/minimum-moves-to-equal-array-elements) | Easy | [](src/MinimumMovesToEqualArrayElements.java) [](python/minimum_moves_to_equal_array_element.py) |
|
124 | 124 | | 455 | [Assign Cookies](https://leetcode.com/problems/assign-cookies) | Easy | [](src/AssignCookies.java) [](python/assign_cookies.py)|
|
|
0 commit comments