main_marking4/knight1_test2.scala
changeset 424 daf561a83ba6
parent 386 e2170c91a9f2
equal deleted inserted replaced
423:e9d14d58be3c 424:daf561a83ba6
       
     1 import M4a._
       
     2 
       
     3 assert(legal_moves(8, Nil, (2,2)) == 
       
     4              List((3,4), (4,3), (4,1), (3,0), (1,0), (0,1), (0,3), (1,4)))
       
     5 assert(legal_moves(8, Nil, (7,7)) == List((6,5), (5,6)))
       
     6 assert(legal_moves(8, List((4,1), (1,0)), (2,2)) == 
       
     7        List((3,4), (4,3), (3,0), (0,1), (0,3), (1,4)))
       
     8 assert(legal_moves(8, Nil, (0,1)) == List((1,3), (2,2), (2,0)))
       
     9 assert(legal_moves(8, List((6,6)), (7,7)) == List((6,5), (5,6)))
       
    10 assert(legal_moves(1, Nil, (0,0)) == Nil)
       
    11 assert(legal_moves(2, Nil, (0,0)) == Nil)
       
    12 assert(legal_moves(3, Nil, (0,0)) == List((1,2), (2,1)))
       
    13