Skip to content

Instantly share code, notes, and snippets.

@ceving
Created April 27, 2017 13:11
Show Gist options
  • Save ceving/45c672ab094ad55f1e08841d00198c8d to your computer and use it in GitHub Desktop.
Save ceving/45c672ab094ad55f1e08841d00198c8d to your computer and use it in GitHub Desktop.
(define (match a b)
(and (= (length a)
(length b))
(= (apply + a)
(apply + b))))
(match '(1 4) '(2 3)) ; => #t
(match '(1 2) '(3 4)) ; => #f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment