You are viewing a single comment's thread. Return to all comments →
for research purpose only:
print([(i in A) for i in arr]) print([(i in B) for i in arr]) print([(i in A) - (i in B) for i in arr]) print([(i in B) - (i in A) for i in arr]) print(sum([(i in A) - (i in B) for i in arr])) print(sum([(i in B) - (i in A) for i in arr]))
Seems like cookies are disabled on this browser, please enable them to open this website
No Idea!
You are viewing a single comment's thread. Return to all comments →
for research purpose only: