testing3/knight_test4.scala
author Christian Urban <urbanc@in.tum.de>
Wed, 30 Oct 2019 14:27:54 +0000
changeset 291 43e59555c383
parent 220 1c47cede8e71
child 296 4e5bc75cdbd3
permissions -rw-r--r--
updated


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)