-
-
Notifications
You must be signed in to change notification settings - Fork 149
Queen attack #970
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
A-O-Emmanuel
wants to merge
7
commits into
exercism:main
Choose a base branch
from
A-O-Emmanuel:queen-attack
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Queen attack #970
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d7f8f03
sync problem specifications data and docs with exercise
A-O-Emmanuel 9cbb6b6
remove strict types comments from test file and example code
A-O-Emmanuel c06346c
adjust tests to match canonical data and add missing test
A-O-Emmanuel d2b02ec
add exercise to auto-sync.txt
A-O-Emmanuel 50a9dca
fix lint issue
A-O-Emmanuel 957e275
Revert unintended changes to PalindromeProductsTest.php
A-O-Emmanuel 7bcbd77
fixe remove exception check for test messages, fixed linting and test…
A-O-Emmanuel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -1,27 +1,21 @@ | ||
| # Instructions | ||
|
|
||
| Given the position of two queens on a chess board, indicate whether or not they | ||
| are positioned so that they can attack each other. | ||
| Given the position of two queens on a chess board, indicate whether or not they are positioned so that they can attack each other. | ||
|
|
||
| In the game of chess, a queen can attack pieces which are on the same | ||
| row, column, or diagonal. | ||
| In the game of chess, a queen can attack pieces which are on the same row, column, or diagonal. | ||
|
|
||
| A chessboard can be represented by an 8 by 8 array. | ||
|
|
||
| So if you're told the white queen is at (2, 3) and the black queen at | ||
| (5, 6), then you'd know you've got a set-up like so: | ||
|
|
||
| ```text | ||
| _ _ _ _ _ _ _ _ | ||
| _ _ _ _ _ _ _ _ | ||
| _ _ _ W _ _ _ _ | ||
| _ _ _ _ _ _ _ _ | ||
| _ _ _ _ _ _ _ _ | ||
| _ _ _ _ _ _ B _ | ||
| _ _ _ _ _ _ _ _ | ||
| _ _ _ _ _ _ _ _ | ||
| ``` | ||
|
|
||
| You'd also be able to answer whether the queens can attack each other. | ||
| In this case, that answer would be yes, they can, because both pieces | ||
| share a diagonal. | ||
| So if you are told the white queen is at `c5` (zero-indexed at column 2, row 3) and the black queen at `f2` (zero-indexed at column 5, row 6), then you know that the set-up is like so: | ||
|
|
||
|  | ||
|
|
||
| You are also able to answer whether the queens can attack each other. | ||
| In this case, that answer would be yes, they can, because both pieces share a diagonal. | ||
|
|
||
| ## Credit | ||
|
|
||
| The chessboard image was made by [habere-et-dispertire][habere-et-dispertire] using LaTeX and the [chessboard package][chessboard-package] by Ulrike Fischer. | ||
|
|
||
| [habere-et-dispertire]: https://exercism.org/profiles/habere-et-dispertire | ||
| [chessboard-package]: https://github.com/u-fischer/chessboard |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -1,39 +1,49 @@ | ||
| # This is an auto-generated file. Regular comments will be removed when this | ||
| # file is regenerated. Regenerating will not touch any manually added keys, | ||
| # so comments can be added in a "comment" key. | ||
| # This is an auto-generated file. | ||
| # | ||
| # Regenerating this file via `configlet sync` will: | ||
| # - Recreate every `description` key/value pair | ||
| # - Recreate every `reimplements` key/value pair, where they exist in problem-specifications | ||
| # - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion) | ||
| # - Preserve any other key/value pair | ||
| # | ||
| # As user-added comments (using the # character) will be removed when this file | ||
| # is regenerated, comments can be added via a `comment` key. | ||
|
|
||
| [3ac4f735-d36c-44c4-a3e2-316f79704203] | ||
| description = "queen with a valid position" | ||
| description = "Test creation of Queens with valid and invalid positions -> queen with a valid position" | ||
|
|
||
| [4e812d5d-b974-4e38-9a6b-8e0492bfa7be] | ||
| description = "queen must have positive row" | ||
| description = "Test creation of Queens with valid and invalid positions -> queen must have positive row" | ||
|
|
||
| [f07b7536-b66b-4f08-beb9-4d70d891d5c8] | ||
| description = "queen must have row on board" | ||
| description = "Test creation of Queens with valid and invalid positions -> queen must have row on board" | ||
|
|
||
| [15a10794-36d9-4907-ae6b-e5a0d4c54ebe] | ||
| description = "queen must have positive column" | ||
| description = "Test creation of Queens with valid and invalid positions -> queen must have positive column" | ||
|
|
||
| [6907762d-0e8a-4c38-87fb-12f2f65f0ce4] | ||
| description = "queen must have column on board" | ||
| description = "Test creation of Queens with valid and invalid positions -> queen must have column on board" | ||
|
|
||
| [33ae4113-d237-42ee-bac1-e1e699c0c007] | ||
| description = "can not attack" | ||
| description = "Test the ability of one queen to attack another -> cannot attack" | ||
|
|
||
| [eaa65540-ea7c-4152-8c21-003c7a68c914] | ||
| description = "can attack on same row" | ||
| description = "Test the ability of one queen to attack another -> can attack on same row" | ||
|
|
||
| [bae6f609-2c0e-4154-af71-af82b7c31cea] | ||
| description = "can attack on same column" | ||
| description = "Test the ability of one queen to attack another -> can attack on same column" | ||
|
|
||
| [0e1b4139-b90d-4562-bd58-dfa04f1746c7] | ||
| description = "can attack on first diagonal" | ||
| description = "Test the ability of one queen to attack another -> can attack on first diagonal" | ||
|
|
||
| [ff9b7ed4-e4b6-401b-8d16-bc894d6d3dcd] | ||
| description = "can attack on second diagonal" | ||
| description = "Test the ability of one queen to attack another -> can attack on second diagonal" | ||
|
|
||
| [0a71e605-6e28-4cc2-aa47-d20a2e71037a] | ||
| description = "can attack on third diagonal" | ||
| description = "Test the ability of one queen to attack another -> can attack on third diagonal" | ||
|
|
||
| [0790b588-ae73-4f1f-a968-dd0b34f45f86] | ||
| description = "can attack on fourth diagonal" | ||
| description = "Test the ability of one queen to attack another -> can attack on fourth diagonal" | ||
|
|
||
| [543f8fd4-2597-4aad-8d77-cbdab63619f8] | ||
| description = "Test the ability of one queen to attack another -> cannot attack if falling diagonals are only the same when reflected across the longest falling diagonal" |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here a space is missing: