Home / Code-challenges / Debug Find Max
def find_max(a, b, c): if a > b && a > c: return a elif b > a && b > c: return b else: return c print(find_max(1, 2, 3))
Python
Debugging