marking3/knight1_test4.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Mon, 05 Aug 2019 20:14:06 +0100
changeset 269 86a85865e772
parent 244 a359976a6f3e
child 331 e3878cdd38bc
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
243
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
244
a359976a6f3e updated
Christian Urban <urbanc@in.tum.de>
parents: 243
diff changeset
     4
assert(first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
a359976a6f3e updated
Christian Urban <urbanc@in.tum.de>
parents: 243
diff changeset
     5
assert(first(List((1,0),(2,0),(3,0)), f) == None)