<p dir="auto">Doing this so that I can document solutions for HackerRank for myself and discuss runtime complexities with other and try to come up with better solutions.
<pre><code>// solution
function solve(a0, a1, a2, b0, b1, b2){
// Complete this function
var alices_points = ( a0 > b0 ? 1 : 0 ) + ( a1 > b1 ? 1 : 0 ) + ( a2 > b2 ? 1 : 0 );
var bobs_points = ( a0 < b0 ? 1 : 0 ) + ( a1 < b1 ? 1 : 0 ) + ( a2 < b2 ? 1 : 0 );
return [ alices_points, bobs_points ];
}
<p dir="auto"><br /><br />
The return value confused me for a little bit. I thought I had to return the string '1 1' as the solution.
Just taking this opportunity to say "THANK YOU FOR FOLLOWING ME"
Congratulations @brucelim! You received a personal award!
You can view your badges on your Steem Board and compare to others on the Steem Ranking
Vote for @Steemitboard as a witness to get one more award and increased upvotes!