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

PROGRAMMING:Output non duplicate list elements

Luz5年前 (2021-05-10)题库488
This topic requires reading in a list of arbitrary integers and outputting the non repeating elements in the list in ascending order.
###Input format:
Enter a list of arbitrary integers.
###Output format:
Output the unrepeated elements in the list in ascending order. The elements should be separated by commas, and there should be no commas at the end.
###Input example:
Here is a set of inputs. For example:
```in
[10,2,3,2,5,9,9,10]
```
###Output example:
The corresponding output is given here. For example:
```out
2,3,5,9,10
```






answer:If there is no answer, please comment