You are viewing a single comment's thread. Return to all comments →
IN C++;
vector compareTriplets(vector a, vector b) { int alice=0; int bob=0;
for(int i=0;i<3;i++) { if(a[i]>b[i]) { ++alice; } else if(a[i]<b[i]){ ++bob; } } return {alice,bob};
}
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 →
IN C++;
vector compareTriplets(vector a, vector b) { int alice=0; int bob=0;
}