From 01fce9fadd5b3145e7a647df522f6d7f87e7885d Mon Sep 17 00:00:00 2001 From: GnosisGrain <103087417+GnosisGrain@users.noreply.github.com> Date: Wed, 1 Jun 2022 19:21:01 -0700 Subject: [PATCH] Delete debug.py --- debug.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 debug.py diff --git a/debug.py b/debug.py deleted file mode 100644 index bdc05d3..0000000 --- a/debug.py +++ /dev/null @@ -1,11 +0,0 @@ -def lone_sum(a, b, c): - if a >= b: - return c - elif a == c: - return b - elif b == c: - return a - elif a == b and a == c and b == c: - return 0 - else: - return a+b+c