Def Aresequallystrong (YourLeft, YourRight, FriendsLeft, FriendsRight): Python Exécution
def areEquallyStrong(yourLeft, yourRight, friendsLeft, friendsRight):
if max(yourLeft, yourRight) == max(friendsRight, friendsLeft) and min(yourLeft, yourRight) == min(friendsLeft, friendsRight):
return True
else:
return False
Crazy Capuchin