給你一個座標 coordinates
,它是一個字串,表示國際象棋棋盤中一個格子的座標。下圖是國際象棋棋盤示意圖。
class Solution: def squareIsWhite(self, coordinates: str) -> bool: a = ord(coordinates[0]) + 1 - ord('a') b = ord(coordinates[1]) - ord('0') return abs(a-b)%2==1
生日快樂,努力就會有回報的。
給你一個座標 coordinates
,它是一個字串,表示國際象棋棋盤中一個格子的座標。下圖是國際象棋棋盤示意圖。
class Solution: def squareIsWhite(self, coordinates: str) -> bool: a = ord(coordinates[0]) + 1 - ord('a') b = ord(coordinates[1]) - ord('0') return abs(a-b)%2==1
生日快樂,努力就會有回報的。