main_testing4/knight_test2.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 09 Nov 2020 14:36:35 +0000
changeset 358 837bd2c4dd57
parent 347 0b727d1a8184
child 403 312c9eb39ad8
permissions -rw-r--r--
updated


import CW9a._

assert(legal_moves(8, Nil, (2,2)) == List((3,4), (4,3), (4,1), (3,0), (1,0), (0,1), (0,3), (1,4)))
assert(legal_moves(8, Nil, (7,7)) == List((6,5), (5,6)))
assert(legal_moves(8, List((4,1), (1,0)), (2,2)) == List((3,4), (4,3), (3,0), (0,1), (0,3), (1,4)))
assert(legal_moves(8, List((6,6)), (7,7)) == List((6,5), (5,6)))
assert(legal_moves(1, Nil, (0,0)) == List())
assert(legal_moves(2, Nil, (0,0)) == List())
assert(legal_moves(3, Nil, (0,0)) == List((1,2), (2,1)))