diff --git a/Debugcode.py b/Debugcode.py index 7c65096..d69a1ac 100644 --- a/Debugcode.py +++ b/Debugcode.py @@ -1,15 +1,3 @@ -#Broken code -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 def lone_sum(a, b, c): #definiton lone_sum if a == b and a == c, and b == c: #moved this from an elif statement to the if statement