In this Symmetri Difference problem, we need to develop a python program that can read a line of integers separated with space. and then we need to convert it into a list and then we need to print the symmetric difference on the output screen.
Problem solution in Python 2 programming.
n=int(raw_input()) my=set(map(int,raw_input().split())) m=int(raw_input()) my2=set(map(int,raw_input().split())) for i in sorted(my.union(my2)): if i not in my.intersection(my2): print i
Problem solution in Python 3 programming.
# Enter your code here. Read input from STDIN. Print output to STDOUT a,b = [set(input().split()) for _ in range(4)][1::2] print('\n'.join(sorted(a^b, key=int)))
Problem solution in pypy programming.
# Enter your code here. Read input from STDIN. Print output to STDOUT M = int(raw_input()) A = set(map(int, raw_input().split())) N = int(raw_input()) B = set(map(int, raw_input().split())) l = sorted((A.difference(B)).union(B.difference(A))) print "\n".join([str(element) for element in l])
Problem solution in pypy3 programming.
# Enter your code here. Read input from STDIN. Print output to STDOUT m = int(input()) set1 = set(list(map(int, input().split()))) n = int(input()) set2 = set(list(map(int, input().split()))) #print (set1) #print (set2) n1 = set1.difference(set2) n2 = set2.difference(set1) L = [str(x) for x in n1] + [str(x) for x in n2] L.sort(key = int) #print (L) print ('\n'.join(L))
0 Comments