You are viewing a single comment's thread. Return to all comments →
teamA = 0 teamB = 0
for i in range(len(a)): if a[i] > b[i]: teamA +=1 elif a[i]<b[i]: teamB +=1 return list([teamA,teamB])
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 →
teamA = 0 teamB = 0