marking2/knight2a_test.scala
author pdated
Sat, 16 Jun 2018 20:54:58 +0100
changeset 184 19b1e01054f6
parent 162 2ea5b3456ed7
permissions -rw-r--r--
updated


val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None

assert(CW7b.first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
assert(CW7b.first(List((1,0),(2,0),(3,0)), f) == None)