A: Triple Texting
https://open.kattis.com/problems/tripletexting
def majority(a,b,c):
if a == b:
return a
else:
return cLast updated
https://open.kattis.com/problems/tripletexting
def majority(a,b,c):
if a == b:
return a
else:
return cLast updated