Advertisement
tabebqena

Untitled

Apr 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. def unique_list(l):
  2.     result = []
  3.     for x in l:
  4.         if x in result:
  5.             continue
  6.         result.append(x)
  7.     return result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement