You are given coordinates
, a string that represents the coordinates of a square of the chessboard. Below is a chessboard for your reference.
Return true
if the square is white, and false
if the square is black.
The coordinate will always represent a valid chessboard square. The coordinate will always have the letter first, and the number second.
Input: coordinates = "a1" Output: false Explanation: From the chessboard above, the square with coordinates "a1" is black, so return false.
Input: coordinates = "h3" Output: true Explanation: From the chessboard above, the square with coordinates "h3" is white, so return true.
Input: coordinates = "c7" Output: false
coordinates.length == 2
'a' <= coordinates[0] <= 'h'
'1' <= coordinates[1] <= '8'
class Solution:
def squareIsWhite(self, coordinates: str) -> bool:
return ord(coordinates[0]) % 2 != ord(coordinates[1]) % 2
# @param {String} coordinates
# @return {Boolean}
def square_is_white(coordinates)
coordinates[0].ord % 2 != coordinates[1].ord % 2
end