first commit

This commit is contained in:
=
2024-02-07 15:06:50 +01:00
commit af02e453c1
55 changed files with 2166 additions and 0 deletions

10
p29/solution.jl Normal file
View File

@@ -0,0 +1,10 @@
function solution(a, b)
S = Set{BigInt}()
for i 2:a
for j 2:b
push!(S, BigInt(i)^j)
end
end
return length(S)
end