Created
February 17, 2018 20:10
-
-
Save Axect/01e9afab058073cc1078ba223d93d26e to your computer and use it in GitHub Desktop.
lazy3
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
primeFactors' n = filter (\p -> mod n p == 0) (takeWhile (\p -> p*p <= n) primes') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment