pre_marking4/knight1_test3b.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 25 Jan 2021 00:21:00 +0000
changeset 389 4113d4d8cf62
parent 387 6282b88511d8
permissions -rw-r--r--
updated marking 2

import CW9a._
//type Pos = (Int, Int)    // a position on a chessboard 
//type Path = List[Pos]    // a path...a list of positions

/*
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)))
}
*/

def count_all_tours_urban(dim: Int) = {
  for (i <- (0 until 3).toList; 
       j <- (0 until dim).toList) yield count_tours(dim, List((i, j)))
}


assert(count_all_tours_urban(5) == List(304, 0, 56, 0, 304, 0, 56, 0, 56, 0, 56, 0, 64, 0, 56))