]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/051/051.factor
factor: trim using lists
[factor.git] / extra / project-euler / 051 / 051.factor
index 23df9f50af16c74d07115370b35a4b0f6c8e1831..73b6325b2cb56df1a9339f58b965cb7643d601d8 100644 (file)
@@ -26,8 +26,8 @@
 
 ! for each prime number, count the families it belongs to. When one reaches count of 8, stop, and get the smallest number by replacing * with ones.
 
-USING: assocs fry kernel math math.combinatorics math.functions
-math.order math.parser math.primes math.ranges namespaces
+USING: assocs kernel math math.combinatorics math.functions
+math.order math.parser math.primes ranges namespaces
 project-euler.common sequences sets ;
 IN: project-euler.051
 <PRIVATE