Advertisement
Guest User

Untitled

a guest
Apr 17th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. for each child:
  2. a := max(a, f(a, child))
  3. if 5 <= a:
  4. break
  5. return a
  6.  
  7. (last (take-while #(> 5 %) (reductions #(max % (f % %2)) initial-a childs)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement