]> gitweb.factorcode.org Git - factor.git/commitdiff
project-euler.098: fix using
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 22 Nov 2023 00:33:07 +0000 (16:33 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 22 Nov 2023 00:33:07 +0000 (16:33 -0800)
extra/project-euler/098/098.factor

index f732288eb25e94daba2a44150bcb0f72e2caa4a5..d43eaf8fb885bfdbacafbf3458d486c56deb6deb 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (c) 2023 John Benediktsson.
 ! See https://factorcode.org/license.txt for BSD license.
 
-USING: anagrams ascii assocs http.client io.encodings.ascii
+USING: anagrams assocs combinators.short-circuit http.client
 io.encodings.utf8 io.files io.files.temp kernel math
-math.combinatorics math.functions math.parser
+math.combinatorics math.functions math.order math.parser
 project-euler.common ranges sequences splitting ;
 
 IN: project-euler.098