Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
project euler 5, haskell
--http://www.haskell.org/haskellwiki/Euler_problems/1_to_10 --2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. --What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20? problem_5 = foldr1 lcm [1..20] main = print $ problem_5
run
|
edit
|
history
|
help
0
project euler 10, haskell
Eerste programma
boolean functions of zero arguments in haskell
Semilattice
folder
Removed input
Quicksort in Haskell
FizzBuzzkell
project euler 7, haskell
Factors of a number, prime numbers