题解 | #提取不重复的整数#
提取不重复的整数
http://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
a = input()
a = list(a)
c = []
d = []
for i in a:
c.append(int(i))
c.reverse() #倒序
for i in c:
if i not in d: #如果新的列表中没有(认为不重复),则添加进新的列表
d.append(i)
for i in d:
print(i,end='')#按输出格式要求输出新的列表
华为机试题解(prod.by kedao) 文章被收录于专栏
华为实习机试题解