Skip to content

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

Notifications You must be signed in to change notification settings

rmbailey86/debug.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

debug.py

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published