]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/028/028.factor
project-euler: Rewrap, update links, add copyrights, tests
[factor.git] / extra / project-euler / 028 / 028.factor
index d7a9d4c442e18c3bb89269222d176605fafe3122..2a84be37027ee8f4dd496f89de8328856343fe1d 100644 (file)
@@ -3,13 +3,13 @@
 USING: kernel math ranges sequences project-euler.common ;
 IN: project-euler.028
 
-! https://projecteuler.net/index.php?section=problems&id=28
+! https://projecteuler.net/problem=28
 
 ! DESCRIPTION
 ! -----------
 
-! Starting with the number 1 and moving to the right in a clockwise direction a
-! 5 by 5 spiral is formed as follows:
+! Starting with the number 1 and moving to the right in a
+! clockwise direction a 5 by 5 spiral is formed as follows:
 
 !     21 22 23 24 25
 !     20  7  8  9 10
@@ -19,7 +19,8 @@ IN: project-euler.028
 
 ! It can be verified that the sum of both diagonals is 101.
 
-! What is the sum of both diagonals in a 1001 by 1001 spiral formed in the same way?
+! What is the sum of both diagonals in a 1001 by 1001 spiral
+! formed in the same way?
 
 
 ! SOLUTION