From 789276bc6b8bcece2c9a8cc0b292c94d30c3dbe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20R=C3=B8nseth?= <maximir@stud.ntnu.no> Date: Tue, 2 Nov 2021 11:04:44 +0000 Subject: [PATCH] Solved the Riemann Conjecture --- soultion.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/soultion.py b/soultion.py index 8b13789..521d4db 100644 --- a/soultion.py +++ b/soultion.py @@ -1 +1,14 @@ + +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 -- GitLab