Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
items.count() solution in Speedy category for Majority by paolo.carlevero
def is_majority(items):
if items.count(True) > items.count(False):
return True
return False
May 17, 2021