I have four lists with their values:
A = [1,2,3,4,5,6,7,8,9,10]
B = [1,2,3]
C = [4,5,6]
D = [7,8,9,10]
Would you have some function to compare list A with the other three lists and say how many numbers from list A repeat with those from the next 3 lists? For example: List A contains 3 numbers from list B, list A contains 3 numbers from list C, list A contains 4 numbers from list D.