Compare the Triplets

  • + 8 comments

    Great solution, I'd remove the ifs though:

    for a, b in zip(alice, bob):
        score[0] += a > b
        score[1] += a < b