题解 | #序列中整数去重#

序列中整数去重

http://www.nowcoder.com/practice/6564a2f6e70f4153ad1ffd58b2b28490

a = int(input()) b = list(map(int, input().split())) mid, ind = 0, [] for i in range(a): for j in range(i + 1, a): if b[j] == mid: ind.append(j) mid = b[i] c = list(set(ind)) for item in sorted(c, reverse=True): b.pop(item) print(*b)

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务