]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/085/085.factor
factor: trim using lists
[factor.git] / extra / project-euler / 085 / 085.factor
index 9c12367cdfd727b1f24fc8edea5a060d11e3182c..3c04724c57184978cd95b864234f7af63cdd9bff 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (c) 2009 Guillaume Nargeot.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors kernel math math.ranges project-euler.common
-sequences locals ;
+USING: accessors kernel math ranges project-euler.common
+sequences ;
 IN: project-euler.085
 
 ! http://projecteuler.net/index.php?section=problems&id=85
@@ -29,9 +29,9 @@ IN: project-euler.085
 : rectangles-count ( a b -- n )
     2dup [ 1 + ] bi@ * * * 4 /i ; inline
 
-:: each-unique-product ( a b quot: ( i j -- ) -- )
-    a b [a,b] [| i |
-        i b [a,b] [| j |
+:: each-unique-product ( ... a b quot: ( ... i j -- ... ) -- ... )
+    a b [a..b] [| i |
+        i b [a..b] [| j |
             i j quot call
         ] each
     ] each ; inline