题解 | #整型数组合并#
整型数组合并
http://www.nowcoder.com/practice/c4f11ea2c886429faf91decfaf6a310b
# -*-coding:utf-8-*-
while True:
try:
input_m1,input_n1,input_m2,input_n2 =input(),input().split(),input(),input().split()
input_nn = map(int,input_n1+input_n2)
input_nn_s = sorted(set(input_nn),reverse=False)
print("".join(list(map(str,input_nn_s))))
except:
break