PHP
·
发表于 5年以前
·
阅读量:8285
此函数返回两个列表中任一列表中的每个元素。
def union(a,b):
return list(set(a + b))
union([1, 2, 3, 4, 5], [6, 2, 8, 1, 4]) # [1,2,3,4,5,6,8]