You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
137 B

from collections import Counter
if __name__ == "__main__":
ls = [2,3,5,9,7,5,3,2,4,6,8,0,7,4,2,1]
ls.pop(0)
print(ls)