testing3/testing3-bak/knight2a_test.scala
changeset 300 be9900ba65ff
parent 299 2837753c2714
child 301 aa0e86419773
equal deleted inserted replaced
299:2837753c2714 300:be9900ba65ff
     1 
       
     2 val f = (x:(Int, Int)) => if (x._1 > 3) Some(List(x)) else None
       
     3 
       
     4 assert(CW7b.first(List((1,0),(2,0),(3,0),(4,0)), f) == Some(List((4,0))))
       
     5 assert(CW7b.first(List((1,0),(2,0),(3,0)), f) == None)