Answers for "Set .intersection() operation solution in python3"

0

Set .intersection() operation solution in python3

# Enter your code here. Read input from STDIN. Print output to STDOUT
num1, st1, num2, st2 = (set(input().split()) for i in range(4))
print(len(st1.intersection(st2)))
Posted by: Guest on April-22-2021

Code answers related to "Set .intersection() operation solution in python3"

Python Answers by Framework

Browse Popular Code Answers by Language