Skip to content

Instantly share code, notes, and snippets.

@keitheous
Forked from epoch/queen_attack.md
Created May 5, 2016 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keitheous/c70a632283be6e83a55fc71dc1b2cd9f to your computer and use it in GitHub Desktop.
Save keitheous/c70a632283be6e83a55fc71dc1b2cd9f to your computer and use it in GitHub Desktop.

Queen Attack

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.

Write a program that positions two queens on a chess board and indicates whether or not they are positioned so that they can attack each other.

queens = Queens.new(:white => [2, 3], :black => [5, 6])
queens.to_s
# => "O O O O O O O O
      O O O O O O O O
      O O O W O O O O
      O O O O O O O O
      O O O O O O O O
      O O O O O O B O
      O O O O O O O O
      O O O O O O O O"

queens.attack?
# => true
require 'minitest/autorun'
require_relative 'queens'
class QueensTest < MiniTest::Unit::TestCase
def test_default_positions
queens = Queens.new
assert_equal [0, 3], queens.white
assert_equal [7, 3], queens.black
end
def test_specific_placement
skip
queens = Queens.new(white: [3, 7], black: [6, 1])
assert_equal [3, 7], queens.white
assert_equal [6, 1], queens.black
end
def test_cannot_occupy_same_space
skip
assert_raises ArgumentError do
Queens.new(white: [2, 4], black: [2, 4])
end
end
def test_string_representation
skip
queens = Queens.new(white: [2, 4], black: [6, 6])
board = <<-BOARD.chomp
O O O O O O O O
O O O O O O O O
O O O O W O O O
O O O O O O O O
O O O O O O O O
O O O O O O O O
O O O O O O B O
O O O O O O O O
BOARD
assert_equal board, queens.to_s
end
def test_cannot_attack
skip
queens = Queens.new(white: [2, 3], black: [4, 7])
assert !queens.attack?
end
def test_can_attack_on_same_row
skip
queens = Queens.new(white: [2, 4], black: [2, 7])
assert queens.attack?
end
def test_can_attack_on_same_column
skip
queens = Queens.new(white: [5, 4], black: [2, 4])
assert queens.attack?
end
def test_can_attack_on_diagonal
skip
queens = Queens.new(white: [1, 1], black: [6, 6])
assert queens.attack?
end
def test_can_attack_on_other_diagonal
skip
queens = Queens.new(white: [0, 6], black: [1, 7])
assert queens.attack?
end
def test_can_attack_on_yet_another_diagonal
skip
queens = Queens.new(white: [4, 1], black: [6, 3])
assert queens.attack?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment