mirror of https://github.com/flaggo/pydu.git
6 lines
101 B
Python
6 lines
101 B
Python
|
from pydu.list import uniq
|
||
|
|
||
|
|
||
|
def test_uniq():
|
||
|
assert uniq([1, 4, 0, 2, 0, 3]) == [1, 4, 0, 2, 3]
|