From 855cc1938be75ab55ceaa596b3bb37294146b865 Mon Sep 17 00:00:00 2001 From: samlianGitHub <50382450+samlianGitHub@users.noreply.github.com> Date: Wed, 22 May 2019 16:41:18 -0700 Subject: [PATCH] Update Debugcode.py --- Debugcode.py | 12 ------------ 1 file changed, 12 deletions(-) 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