题解 | 序列中删除指定数字
序列中删除指定数字
https://www.nowcoder.com/practice/7bbcdd2177a445a9b66da79512b32dd7
n = int(input())
l = list(map(int, input().split()))
m = int(input())
while m in l:
l.remove(m)
print(' '.join(map(str, l)))
序列中删除指定数字
https://www.nowcoder.com/practice/7bbcdd2177a445a9b66da79512b32dd7
n = int(input())
l = list(map(int, input().split()))
m = int(input())
while m in l:
l.remove(m)
print(' '.join(map(str, l)))
相关推荐
查看23道真题和解析