Answers for "checking if varible in a list in other list o(n)"

2

check if a list contains any item from another list python

## using set
list_A = [1, 2, 3, 4]
list_B = [2, 3]

set_A = set(list_A)
set_B = set(list_B)

print(set_A.intersection(set_B))

# True if there is any element same
# False if there is no element same
Posted by: Guest on May-17-2020

Code answers related to "checking if varible in a list in other list o(n)"

Python Answers by Framework

Browse Popular Code Answers by Language