summaryrefslogtreecommitdiff
path: root/progs/a936.py
blob: 1ea3d537896a977cad12757c4bbdf1fade215534 (plain)
1
2
3
4
5
6
def unique_product(list_data):
    temp = list(set(list_data))
    p = 1
    for i in temp:
        p *= i
    return p