main_testing4/knight_test4.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Sat, 11 Mar 2023 22:42:09 +0000
changeset 464 73ced118f73d
parent 403 ffce7b61b446
permissions -rw-r--r--
updated to scala 3

import M4a._

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)