NP23. 删除好友
描述
输入描述
输出描述
输出删除好友后的完整列表。示例1
输入:
NiuNiu Niukele NiuNeng NiuNiu
输出:
['Niukele', 'NiuNeng']
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-08-02
a=raw_input() b=raw_input() c=a.split() c.remove(b) print(c)
Python 解法, 执行用时: 12ms, 内存消耗: 2944KB, 提交时间: 2022-08-05
a=raw_input() l2=[] for i in a.split(): l2.append(str(i)) b=raw_input() l2.remove(b) print(l2)
Python 解法, 执行用时: 12ms, 内存消耗: 2944KB, 提交时间: 2022-08-01
s = raw_input() l = s.split() d = raw_input() l.remove(d) print l
Python 3 解法, 执行用时: 28ms, 内存消耗: 4440KB, 提交时间: 2022-08-06
name = input().split() a = input() name.remove(a) print(name)
Python 3 解法, 执行用时: 28ms, 内存消耗: 4452KB, 提交时间: 2022-07-27
namelist = input().split(" ") namedel = input() namelist.remove(namedel) print(namelist)