testing2/knight2a_test.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 28 Nov 2017 20:37:57 +0000
changeset 159 6ba27d7cf416
parent 145 155a7e41615e
permissions -rw-r--r--
typo


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)