• + 0 comments
    # Complete the catAndMouse function below.
    def catAndMouse(x, y, z):
        if abs(z - x) == abs(z - y):
            return ("Mouse C")
        elif abs( z - x ) < abs(z - y):
            return ("Cat A")
        else:
            return ("Cat B")