题解 | #整型数组合并#
整型数组合并
https://www.nowcoder.com/practice/c4f11ea2c886429faf91decfaf6a310b
相加去重后, 用sorted的key参数可简化一次转换操作
def fun(): _, a1, _, a2 = input(), input().split(' '), input(), input().split(' ') print(''.join(sorted(set(a1+a2), key=lambda x:int(x)))) fun()