summaryrefslogtreecommitdiff
path: root/progs/a331.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a331.py')
-rw-r--r--progs/a331.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a331.py b/progs/a331.py
new file mode 100644
index 0000000..1a150e4
--- /dev/null
+++ b/progs/a331.py
@@ -0,0 +1,6 @@
+def remove_duplic_list(l):
+ temp = []
+ for x in l:
+ if x not in temp:
+ temp.append(x)
+ return temp \ No newline at end of file