Python 2, 48 bytes
lambda x:reduce(lambda a,b:set(a)&set(b)and b,x)
Print a empty set for False and the last element for True
Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack Exchangelambda x:reduce(lambda a,b:set(a)&set(b)and b,x)
Print a empty set for False and the last element for True