Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
array.array for speed solution in Uncategorized category for Non-unique Elements by Stensen
from array import array
def checkio(a):
b, d = array('i', a), array('i')
for e in b:
if b.count(e) < 2: continue
d.append(e)
return d.tolist()
Feb. 7, 2021