marking3/knight1_test4.scala
author Christian Urban <urbanc@in.tum.de>
Sat, 02 Feb 2019 13:35:07 +0000
changeset 262 21c69dc3dbf7
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)