diff -r e9d14d58be3c -r daf561a83ba6 main_marking4/knight1_test3a.scala --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main_marking4/knight1_test3a.scala Mon Apr 11 23:55:27 2022 +0100 @@ -0,0 +1,14 @@ +import M4a._ + +def count_all_tours_urban(dim: Int) = { + for (i <- (0 until dim).toList; + j <- (0 until dim).toList) yield count_tours(dim, List((i, j))) +} + + +assert(count_all_tours_urban(1) == List(1)) +assert(count_all_tours_urban(2) == List(0, 0, 0, 0)) +assert(count_all_tours_urban(3) == List(0, 0, 0, 0, 0, 0, 0, 0, 0)) +assert(count_all_tours_urban(4) == List(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)) + +