-->
当前位置:首页 > 题库

PROGRAMMING:Remove duplicate values from the list

Luz5年前 (2021-05-10)题库426
Remove duplicate values from a list, the relative position of different elements in the list should not be changed.
### input format:
### output format:
### input sample:
```in
[4,7,5,6,8,6,9,5]
```
### output sample:
```out
4 7 5 6 8 9
```
Tip: The strings "[1,3,5]" can be converted to a list using the eval() function.






answer:If there is no answer, please comment