main_solution4/knight2.scala
changeset 400 e48ea8300b2d
parent 347 4de31fdc0d67
equal deleted inserted replaced
399:b17a98b0c52f 400:e48ea8300b2d
     1 // Part 4 about finding a single tour using the Warnsdorf Rule
     1 // Part 2 about finding a single tour using the Warnsdorf Rule
     2 //=============================================================
     2 //=============================================================
     3 
     3 
     4 object CW9b { // for preparing the jar
     4 object M4b { // for preparing the jar
     5 
     5 
     6 type Pos = (Int, Int)
     6 type Pos = (Int, Int)
     7 type Path = List[Pos]
     7 type Path = List[Pos]
     8 
     8 
     9 
     9