Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 210 Bytes

File metadata and controls

11 lines (11 loc) · 210 Bytes

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