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