main_testing4-old/knight_test4.scala
changeset 473 be818c5a67d4
parent 403 312c9eb39ad8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main_testing4-old/knight_test4.scala	Sat Nov 04 18:53:37 2023 +0000
@@ -0,0 +1,6 @@
+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)