testing3/knight_test1.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 22 Nov 2018 23:00:57 +0000
changeset 216 8c868feb917b
parent 215 testing3/knight1_test.scala@438459a8e48b
child 284 9a04eb6a2291
permissions -rw-r--r--
updated


assert(is_legal(8, Nil, (3, 4)) == true)
assert(is_legal(8, List((4, 1), (1, 0)), (4, 1)) == false)
assert(is_legal(2, Nil, (0, 0)) == true)