Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Majority by linfei2
def is_majority(items: list) -> bool:
if len(items) > 0:
return items.count(True) > items.count(False)
return False
May 16, 2021
Comments: