Skip to content
Snippets Groups Projects
Commit 789276bc authored by Maximilian Rønseth's avatar Maximilian Rønseth
Browse files

Solved the Riemann Conjecture

parent eaef445a
No related branches found
No related tags found
No related merge requests found
def solve(problems):
if (len(problems) == 1) return 0
for problem in problems:
solve(problem)
return "Bruh no solution"
problems = ["long list of stuff"]
print(solve(problems))
#found answer
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment