]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/056/056.factor
project-euler: Rewrap, update links, add copyrights, tests
[factor.git] / extra / project-euler / 056 / 056.factor
index 4c5d0258217a889fc65bd4b1bfec154000bf1df2..ba6e0f0b9e6d21bb9d3b46a173149d944f2d361f 100644 (file)
@@ -4,17 +4,18 @@ USING: kernel math.functions ranges project-euler.common
 sequences math.order ;
 IN: project-euler.056
 
-! https://projecteuler.net/index.php?section=problems&id=56
+! https://projecteuler.net/problem=56
 
 ! DESCRIPTION
 ! -----------
 
-! A googol (10^100) is a massive number: one followed by one-hundred zeros;
-! 100^100 is almost unimaginably large: one followed by two-hundred zeros.
-! Despite their size, the sum of the digits in each number is only 1.
+! A googol (10^100) is a massive number: one followed by
+! one-hundred zeros; 100^100 is almost unimaginably large: one
+! followed by two-hundred zeros. Despite their size, the sum of
+! the digits in each number is only 1.
 
-! Considering natural numbers of the form, a^b, where a, b < 100, what is the
-! maximum digital sum?
+! Considering natural numbers of the form, a^b, where a, b <
+! 100, what is the maximum digital sum?
 
 
 ! SOLUTION