Created
March 13, 2014 08:43
-
-
Save tylerholien/9524506 to your computer and use it in GitHub Desktop.
Solution to http://codepad.org/qQlH3Kob
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pairToList :: (a,a) -> [a] | |
pairToList = (flip map) [fst,snd] . flip ($) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment