main_testing4/knight_test1.scala
changeset 347 4de31fdc0d67
parent 284 9a04eb6a2291
child 403 ffce7b61b446
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main_testing4/knight_test1.scala	Mon Nov 02 02:31:44 2020 +0000
@@ -0,0 +1,6 @@
+import CW9a._
+
+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)
+