1713: 删除重复出现的数字
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:62
Solved:14
Description
在找出数组中重复的数字的例题中,我们分别运用flag标记变量法和列表/字典法找出重复出现的数字,当然,能找出重复的数自然也能实现去重操作。
Input
含有重复数字的列表字符串
Output
将重复数字删除的列表字符串
Sample Input Copy
12
7 3 8 6 1 0 4 5 3 7 5 2
Sample Output Copy
7 3 8 6 1 0 4 5 2