Skip to content

Instantly share code, notes, and snippets.

@kartikshah
Created May 15, 2011 20:40
Show Gist options
  • Save kartikshah/973509 to your computer and use it in GitHub Desktop.
Save kartikshah/973509 to your computer and use it in GitHub Desktop.
4Clojure 39
(fn [xs1 xs2] (flatten (reverse (seq (zipmap xs1 xs2)))))
@blambin
Copy link

blambin commented Apr 27, 2018

(fn [coll1 coll2] 
	(flatten 
		(map list 
			coll1 coll2))
	
	)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment