Guest User

Untitled

a guest
Nov 22nd, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (define (process-list-of-x lox)
  2. (cond
  3. ;; trivial case
  4. [(empty? lox) ...]
  5. [(cons? lox)
  6. ; combine the solutions
  7. (...
  8. ; solve the first sub-problem
  9. (process-x (first lox))
  10. ...
  11. ; solve the second sub-problem
  12. (process-lox (rest lox))
  13. ...)]))
Add Comment
Please, Sign In to add comment