marking3/knight1_test4.scala
changeset 244 a359976a6f3e
parent 243 9bb36426c781
child 331 e3878cdd38bc
--- a/marking3/knight1_test4.scala	Sun Dec 09 01:36:49 2018 +0000
+++ b/marking3/knight1_test4.scala	Mon Dec 10 02:23:30 2018 +0000
@@ -1,5 +1,5 @@
 
 val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
 
-assert(CW7b.first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
-assert(CW7b.first(List((1,0),(2,0),(3,0)), f) == None)
+assert(first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
+assert(first(List((1,0),(2,0),(3,0)), f) == None)