marking3/knight1_test4.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 26 Nov 2019 01:22:36 +0000
changeset 325 ca9c1cf929fa
parent 244 a359976a6f3e
child 331 e3878cdd38bc
permissions -rw-r--r--
updated


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

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