Arc Forumnew | comments | leaders | submitlogin
1 point by rincewind 5692 days ago | link | parent

sorry, I hadn't had access to an Arc then.

  (best (fn (a b) (and odd.a (or even.b (> a b)))) '(6 2 4 5))
as mexpr:

  best[[a;b]-> odd[a] and (even[b] or a > b); list[6;2;4;5]];


1 point by drcode 5692 days ago | link

yes, still a pretty good solution.

-----