Body double solution in Clear category for Majority by veky
def is_majority(items): return sum(items) * 2 > len(items)
Jan. 11, 2020
Comments: