Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (cond
  2. [(empty? alon) empty]
  3. [(cons? alon) (if (
  4. (max2 (first alon)
  5. (first (rest alon))
  6. )
  7. (cons (first alon))
  8. (right-max (rest alon))
  9. ))]
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement