Created
June 26, 2014 12:10
-
-
Save lnicola/183f8d3ff794f763ab73 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| module Main where | |
| parts n = parts' 1 n where | |
| parts' _ 0 = [[]] | |
| parts' p n = concatMap (\x -> (map . (:)) x $ parts' x $ n - x) [p .. n] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment