You are viewing a single comment's thread. Return to all comments →
def compareTriplets(a, b): alice = bob = 0 for i in range(3): if(a[i] > b[i]): alice += 1 elif(a[i] < b[i]): bob += 1 return [alice, bob] a = list(map(int, input().split())) b = list(map(int, input().split())) result = compareTriplets(a, b) print(*result)
Seems like cookies are disabled on this browser, please enable them to open this website
Compare the Triplets
You are viewing a single comment's thread. Return to all comments →
For Python3 Platform