testing3/knight_test4.scala
author Christian Urban <urbanc@in.tum.de>
Sat, 15 Dec 2018 23:58:12 +0000
changeset 248 1616d06a0893
parent 220 3020f8c76baa
child 296 12dc251fc47e
permissions -rw-r--r--
updared


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

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