We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d00bb commit 06ec330Copy full SHA for 06ec330
julia/Euler/src/Euler.jl
@@ -5,8 +5,9 @@ module Euler
5
include.(filter(contains(r".jl$"), readdir(joinpath(@__DIR__, "lib"), join=true)))
6
7
# read solutions
8
-for bin_dir in filter(x -> match(r"bin.*", x) !== nothing,readdir(@__DIR__))
+for bin_dir in filter(x -> match(r"bin.*", x) !== nothing, readdir(@__DIR__))
9
include.(filter(contains(r".jl$"), readdir(joinpath(@__DIR__, bin_dir), join=true)))
10
end
11
12
+
13
end # module Euler
0 commit comments