Sha256: f92b9ef059da6a43e376624cbdc7179a475da3b4a63dfc7f73bd2f4a7665d7b3

Contents?: true

Size: 1.67 KB

Versions: 79

Compression:

Stored size: 1.67 KB

Contents

# Queen Attack

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.

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.

* * * *

For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/ruby).

For running the tests provided, you will need the Minitest gem. Open a
terminal window and run the following command to install minitest:

    gem install minitest

If you would like color output, you can `require 'minitest/pride'` in
the test file, or note the alternative instruction, below, for running
the test file.

Run the tests from the exercise directory using the following command:

    ruby queen_attack_test.rb

To include color from the command line:

    ruby -r minitest/pride queen_attack_test.rb


## Source

J Dalbey's Programming Practice problems [http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html](http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

79 entries across 79 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.138 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.137 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.136 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.135 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.134 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.133 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.132 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.131 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.130 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.129 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.128 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.127 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.126 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.125 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.124 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.123 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.122 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.121 tracks/ruby/exercises/queen-attack/README.md
trackler-2.2.1.120 tracks/ruby/exercises/queen-attack/README.md