summaryrefslogtreecommitdiff
path: root/progs/a936.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a936.py')
-rw-r--r--progs/a936.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a936.py b/progs/a936.py
new file mode 100644
index 0000000..1ea3d53
--- /dev/null
+++ b/progs/a936.py
@@ -0,0 +1,6 @@
+def unique_product(list_data):
+ temp = list(set(list_data))
+ p = 1
+ for i in temp:
+ p *= i
+ return p \ No newline at end of file