testing2/knight2a_test.scala
author Christian Urban <urbanc@in.tum.de>
Mon, 11 Jun 2018 14:59:09 +0100
changeset 180 35b4dc785a40
parent 145 d306102fd33b
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)