What is wrong with my code...
def bigger(b,c):
if b > c:
return b
else:
return c
# if b is returned, then b >c
# if c is returned, then c > b
def biggest(a,b,c):
return bigger(a,bigger(b,c))
def median(a,b,c):
if biggest(a,b,c) == c and bigger(a,b) ==a:
# c > b and c > a
# a > b
return a
elif biggest(a,b,c) == c and bigger(a,b)==b:
#
return b
else:
return c