compare the triplets hackerrank solution
for(let i=0; i<a.length; i++){
if(a[i] < b[i]){
bobScore += 1
}
if(a[i] == b[i]){
}
if(a[i] > b[i]){
aliceScore += 1
}
}
console.log(aliceScore + ' ' + bobScore)
// Paste this code inside the function.