We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-- Assignment 3 -- Time: 30 minutes -- Result: -- These are the composite natural numbers between 1 and 100: [8,12,16,18,20,24,27,28,30,32,36,40,42,44,45,48,50,52,54,56,60,63,64,66,68,70,72,75,76,78,80,81,84,88,90,92,96,98,99] composites :: [Integer] composites = filter (\x -> length (factors x) > 2) [0..]
are not the complete list of natural numbers. Must become
composites :: [Integer] composites = filter (\x -> length (factors x) >= 2) [0..]
The report about 4, 5 and 6 is not a direct answer on the question posed in exercise 4. An answer on 4,5 and 6 can be
The text was updated successfully, but these errors were encountered:
No branches or pull requests
are not the complete list of natural numbers. Must become
The report about 4, 5 and 6 is not a direct answer on the question posed in exercise 4.
An answer on 4,5 and 6 can be
The text was updated successfully, but these errors were encountered: