forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Problem Solution - "1812. Determine Color of a Chessboard Square"
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
algorithms/cpp/determineColorOfAChessboardSquare/DetermineColorOfAChessboardSquare.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Source : https://leetcode.com/problems/determine-color-of-a-chessboard-square/ | ||
// Author : Hao Chen | ||
// Date : 2021-04-06 | ||
|
||
/***************************************************************************************************** | ||
* | ||
* 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. | ||
* | ||
* Example 1: | ||
* | ||
* Input: coordinates = "a1" | ||
* Output: false | ||
* Explanation: From the chessboard above, the square with coordinates "a1" is black, so return false. | ||
* | ||
* Example 2: | ||
* | ||
* Input: coordinates = "h3" | ||
* Output: true | ||
* Explanation: From the chessboard above, the square with coordinates "h3" is white, so return true. | ||
* | ||
* Example 3: | ||
* | ||
* Input: coordinates = "c7" | ||
* Output: false | ||
* | ||
* Constraints: | ||
* | ||
* coordinates.length == 2 | ||
* 'a' <= coordinates[0] <= 'h' | ||
* '1' <= coordinates[1] <= '8' | ||
******************************************************************************************************/ | ||
|
||
class Solution { | ||
public: | ||
bool squareIsWhite(string coordinates) { | ||
return (coordinates[0] - 'a'+1) % 2 != (coordinates[1] - '0') % 2; | ||
} | ||
}; |