Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Majority by logicalladybuglifestyle
def is_majority(items: list) -> bool:
return sum(items) > len(items) // 2
March 30, 2020