First solution in Clear category for Majority by twilyght
def is_majority(items: list) -> bool: return sum(items) > len(items) // 2
May 4, 2020