题解 | 提取不重复的整数
提取不重复的整数
https://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
while True:
try:
n = list(input())
n.reverse()
print(*list(dict.fromkeys(n)),sep='')
except:break
提取不重复的整数
https://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
while True:
try:
n = list(input())
n.reverse()
print(*list(dict.fromkeys(n)),sep='')
except:break
相关推荐
查看20道真题和解析