// 1812. Determine Color of a Chessboard Square
class Solution {
public boolean squareIsWhite(String coordinates) {
return (coordinates.charAt(0) & 1) - (coordinates.charAt(1) & 1) != 0;
}
}
学习笔记: 这道题就是用模运算,一行就结束了。 之前9月1日做的,今天就懒得再做一遍了。