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