marking3/knight1_test4.scala
author Christian Urban <urbanc@in.tum.de>
Sat, 02 Nov 2019 19:07:19 +0000
changeset 306 63d4301a8bc6
parent 244 0ab369f53ac1
child 331 3a9acfc6106b
permissions -rw-r--r--
update


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)