Hash join: Difference between revisions

no edit summary
(Revised the task description to give the sample data to use)
No edit summary
Line 40:
 
=={{header|Common Lisp}}==
<lang lisp>(defparameter *table-A* '((27 "Jonah") (18 "Alan") (28 "Glory") (18 "Popeye") (28 "Alan")))
<lang lisp>;; Uses the same example as in Go.
 
(defparameter *table-A* '((27 "Jonah") (18 "Alan") (28 "Glory") (18 "Popeye") (28 "Alan")))
 
(defparameter *table-B* '(("Jonah" "Whales") ("Jonah" "Spiders") ("Alan" "Ghosts") ("Alan" "Zombies") ("Glory" "Buffy")))