]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixed comments of project-euler.085
authorGuillaume Nargeot <killy971@gmail.com>
Tue, 15 Sep 2009 12:01:25 +0000 (21:01 +0900)
committerGuillaume Nargeot <killy971@gmail.com>
Tue, 15 Sep 2009 12:01:25 +0000 (21:01 +0900)
extra/project-euler/085/085.factor

index 6c70f65bf7ad7ecf810dfbb1de1e613f9afb73f1..9c12367cdfd727b1f24fc8edea5a060d11e3182c 100644 (file)
@@ -19,7 +19,7 @@ IN: project-euler.085
 ! SOLUTION
 ! --------
 
-! A grid measuring x by y contains x * (x + 1) * y * (x + 1) rectangles.
+! A grid measuring x by y contains x * (x + 1) * y * (x + 1) / 4 rectangles.
 
 <PRIVATE
 
@@ -56,6 +56,6 @@ PRIVATE>
     area-of-nearest ;
 
 ! [ euler085 ] 100 ave-time
-! 2285 ms ave run time - 4.8 SD (100 trials)
+! 791 ms ave run time - 17.15 SD (100 trials)
 
 SOLUTION: euler085