Skip to content

Commit 2934962

Browse files
authored
Update 3996. Even Number of Knight Moves.py
1 parent 0488f2a commit 2934962

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

leetcode3/김민제/3996. Even Number of Knight Moves.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class Solution:
22
def canReach(self, start: list[int], target: list[int]) -> bool:
33
start_parity = (start[0]+start[1])%2
44
target_paritiy = (target[0]+target[1])%2
5-
5+
#test
66
if start_parity == target_paritiy:
77
return True
88
else:

0 commit comments

Comments
 (0)