Define a function overlapping () that takes two lists and returns true if they have at least one member in common, False otherwise.
Answer:
def
overlapping
(l1,l2):
len1=len(l1)
len2=len(l2)
for i in range(len1):
for j in range(len2):
if l1[i]==l2[j]:
return True
return False
Learn in your speed, with individual attention - Teachoo Maths 1-on-1 Class