Skip to content

Instantly share code, notes, and snippets.

@Joeb3219
Created April 22, 2017 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joeb3219/66a0e1204b5e35b5341c2537d04b6381 to your computer and use it in GitHub Desktop.
Save Joeb3219/66a0e1204b5e35b5341c2537d04b6381 to your computer and use it in GitHub Desktop.
For Rutgers Pring Prog S2017
(define allValid?
(lambda (check dict)
(reduce
(lambda (a b)
(if (equal? a b)
a
#f
)
)
(map check dict)
#t
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment