Last active
January 30, 2016 22:35
-
-
Save mendaomn/a9243744604afa5b58b2 to your computer and use it in GitHub Desktop.
FP baby steps: detect if two Chess Queens can attack each other
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
// QueenAttack.js | |
var QueenAttack = ( function(){ | |
function sameRow( board ){ | |
return board.white.x === board.black.x; | |
} | |
function sameColumn( board ){ | |
return board.white.y === board.black.y; | |
} | |
function sameDiagonal( board ){ | |
return Math.abs( board.white.x - board.black.x ) === Math.abs( board.white.y - board.black.y ); // wrong ? | |
} | |
// Can attack each other? | |
function canAttack( board ){ | |
return sameRow( board ) || sameColumn( board ) || sameDiagonal( board ); | |
} | |
function init( config ) { | |
return { | |
white: config.white, | |
black: config.black | |
}; | |
} | |
return { | |
init: init, | |
canAttack: canAttack | |
}; | |
} )(); | |
// Test | |
function run(){ | |
var white = { x: 0, y: 1 }, | |
black = { x: 1, y: 0 }, | |
config, | |
board; | |
config = { white: white, black: black }; | |
board = QueenAttack.init( config ); | |
return QueenAttack.canAttack( board ); | |
} | |
run() === true; // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment