marking3/knight1_test4.scala
changeset 331 3a9acfc6106b
parent 244 0ab369f53ac1
equal deleted inserted replaced
330:c5f89ee12d25 331:3a9acfc6106b
       
     1 import CW8a._
     1 
     2 
     2 val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
       
     3 
     3 
     4 assert(first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
     4 val f_urban = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
     5 assert(first(List((1,0),(2,0),(3,0)), f) == None)
     5 
       
     6 assert(first(List((1,0),(2,0),(3,0),(4,0)), f_urban) == Some(List((4,0))))
       
     7 assert(first(List((1,0),(2,0),(3,0)), f_urban) == None)