Attic/marking2/knight2a_test.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 13 Jan 2022 12:55:03 +0000 (2022-01-13)
changeset 423 e9d14d58be3c
parent 331 e3878cdd38bc
permissions -rw-r--r--
test

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)