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