]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/005/005.factor
project-euler: Rewrap, update links, add copyrights, tests
[factor.git] / extra / project-euler / 005 / 005.factor
index 6c76547f95029b3f8c773b40aba2dd47c51a832c..a495b2e7bb5fe8bacf54bcaecc95e84769643182 100644 (file)
@@ -3,15 +3,16 @@
 USING: math project-euler.common ranges sequences ;
 IN: project-euler.005
 
-! https://projecteuler.net/index.php?section=problems&id=5
+! https://projecteuler.net/problem=5
 
 ! DESCRIPTION
 ! -----------
 
-! 2520 is the smallest number that can be divided by each of the numbers from 1
-! to 10 without any remainder.
+! 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 number that is evenly divisible by all of the numbers from 1 to 20?
+! What is the smallest number that is evenly divisible by all of
+! the numbers from 1 to 20?
 
 
 ! SOLUTION