题解 | 整型数组合并
整型数组合并
https://www.nowcoder.com/practice/c4f11ea2c886429faf91decfaf6a310b
while True: try: n = int(input()) n_l = list(map(int, input().split())) m = int(input()) m_l = list(map(int, input().split())) res = list(set(n_l + m_l)) res.sort() print("".join(map(str, res))) except: break