summaryrefslogtreecommitdiff
path: root/progs/a331.py
blob: 1a150e45c16c50cfa42631a9d9d97c935f12c2cd (plain)
1
2
3
4
5
6
def remove_duplic_list(l):
    temp = []
    for x in l:
        if x not in temp:
            temp.append(x)
    return temp