File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 87
87
| 278 | [ First Bad Version] ( https://leetcode.com/problems/first-bad-version ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( src/FirstBadVersion.java ) [ ![ Python] ( https://img.icons8.com/color/35/000000/python.png )] ( python/first_bad_version.py ) |
88
88
| 283 | [ Move Zeroes] ( https://leetcode.com/problems/move-zeroes ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( src/MoveZeros.java ) [ ![ Python] ( https://img.icons8.com/color/35/000000/python.png )] ( python/move_zeroes.py ) |
89
89
| 290 | [ Word Pattern] ( https://leetcode.com/problems/word-pattern ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/WordPattern.java ) [ ![ Python] ( https://img.icons8.com/color/35/000000/python.png )] ( python/word_pattern.py ) |
90
- | 292 | [ Nim Game] ( https://leetcode.com/problems/nim-game ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NimGame.java ) |
90
+ | 292 | [ Nim Game] ( https://leetcode.com/problems/nim-game ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NimGame.java ) [ ![ Python ] ( https://img.icons8.com/color/35/000000/python.png )] ( python/nim_game.py ) |
91
91
| 293 | [ Flip Game] ( https://leetcode.com/problems/flip-game ) | Easy | |
92
92
| 299 | [ Bulls and Cows] ( https://leetcode.com/problems/bulls-and-cows ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/BullsAndCows.java ) |
93
93
| 303 | [ Range Sum Query - Immutable] ( https://leetcode.com/problems/range-sum-query-immutable ) | Easy | [ ![ Java] ( https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png )] ( https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/RangeSumQueryImmutable.java ) |
Original file line number Diff line number Diff line change
1
+ class Solution :
2
+ def canWinNim (self , n : int ) -> bool :
3
+ return n % 4 is not 0
You can’t perform that action at this time.
0 commit comments