| author | Christian Urban <christian.urban@kcl.ac.uk> |
| Wed, 25 Nov 2020 17:39:20 +0000 | |
| changeset 371 | 0b7f7b402064 |
| parent 370 | 823eebffe3db |
| child 372 | edad26e1becc |
| pre_solution4/knight1.scala | file | annotate | diff | comparison | revisions | |
| pre_templates4/knight1.jar | file | annotate | diff | comparison | revisions |
--- a/pre_solution4/knight1.scala Wed Nov 25 17:29:11 2020 +0000 +++ b/pre_solution4/knight1.scala Wed Nov 25 17:39:20 2020 +0000 @@ -1,7 +1,7 @@ // Part 1 about finding and counting Knight's tours //================================================== -object CW8a { // for preparing the jar +object CW9a { // for preparing the jar type Pos = (Int, Int) // a position on a chessboard type Path = List[Pos] // a path...a list of positions