Q:

Find the union and intersection of two arrays in Python

0

Union and intersection of two arrays

A list that has the common distinct element from both arrays and if there are repetitions of the element then only one occurrence is considered, known as the union of both arrays.

A list that has common distinct elements from both arrays, is the intersection of both arrays.

Algorithm to solve this problem

  1. Initially, we will take two lists from the user which may have repeated numbers or not.
  2. We will take the bitwise or (|) between the sets of both arrays to find union and assign it into a variable A in the form of lists.
  3. To find the intersection of both arrays, we will use the bitwise and (&) between the sets of given arrays and assign it into a variable B in the form of lists.
  4. Print variable A and B which is our required output.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Code:

a=list(map(int,input('Enter elements of first list:').split()))
b=list(map(int,input('Enter elements of second list:').split()))

A=list(set(a)|set(b))
B=list(set(a)&set(b))

print('Union of the arrays:',A)
print('intersection of the arrays:',B)

Output

Enter elements of first list: 3 4 6 4  4 6 7 41
Enter elements of second list: 78 3 5 7 -1 9 2 -5
Union of the arrays: [2, 3, 4, 5, 6, 7, 41, 9, 78, -5, -1]
intersection of the arrays: [3, 7]

set() function is inbuilt in Python which is used to convert a list into another list which does not contain duplicate or repeated elements.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now