问题描述
解题思路
太简单了,不写
代码
class Solution {
public:
bool squareIsWhite(string coordinates) {
if ((coordinates[0] - 'a' + 1 - coordinates[1]) % 2 == 0)
return false;
else
return true;
}
};
标签:square,1812,格子,color,国际象棋,coordinates,棋盘
From: https://www.cnblogs.com/zwyyy456/p/16967014.html