You are viewing a single comment's thread. Return to all comments →
Solution from my side for this problem
def catAndMouse(x, y, z): a = abs(x-z) b = abs(y-z) if(a == b): return 'Mouse C' elif(a<b): return 'Cat A' elif(a>b): return 'Cat B'
Seems like cookies are disabled on this browser, please enable them to open this website
Cats and a Mouse
You are viewing a single comment's thread. Return to all comments →
Solution from my side for this problem