]> 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 514b9ca8313e7f4353b38e8665ae0393a4f74846..73b6325b2cb56df1a9339f58b965cb7643d601d8 100644 (file)
@@ -26,7 +26,7 @@
 
 ! 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
+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