]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/004/004.factor
project-euler: Rewrap, update links, add copyrights, tests
[factor.git] / extra / project-euler / 004 / 004.factor
index 5cc7a4d3097f5738405e5cf7a13349c4eb30f469..1116fe28e679a625fd762496b343609094b7f82c 100644 (file)
@@ -4,15 +4,17 @@ USING: kernel math math.functions project-euler.common ranges
 sequences sets sorting ;
 IN: project-euler.004
 
-! https://projecteuler.net/index.php?section=problems&id=4
+! https://projecteuler.net/problem=4
 
 ! DESCRIPTION
 ! -----------
 
-! A palindromic number reads the same both ways. The largest palindrome made
-! from the product of two 2-digit numbers is 9009 = 91 * 99.
+! A palindromic number reads the same both ways. The largest
+! palindrome made from the product of two 2-digit numbers is
+! 9009 = 91 * 99.
 
-! Find the largest palindrome made from the product of two 3-digit numbers.
+! Find the largest palindrome made from the product of two
+! 3-digit numbers.
 
 
 ! SOLUTION