Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for Majority by eugene100372
def is_majority(items: list) -> bool:
return sum(items)>len(items)/2
Jan. 28, 2021
Comments: