from itertools import chain

d = [[1],[2],[3],[3]]

print(set(chain.from_iterable(d)))