Skip to content

Instantly share code, notes, and snippets.

@linstantnoodles
Created September 25, 2012 15:47
Show Gist options
  • Save linstantnoodles/3782698 to your computer and use it in GitHub Desktop.
Save linstantnoodles/3782698 to your computer and use it in GitHub Desktop.
Solution to EC7
let rec unZip list =
match list with
[] -> ([], [])
| (x, y)::rest ->
let (xs, ys) = unZip rest in
(x::xs, y::ys);;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment