Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Majority by tokiojapan55
def is_majority(items: list) -> bool:
return items.count(True) > items.count(False)
June 22, 2020