summaryrefslogtreecommitdiff
path: root/progs/a794.py
blob: 564ce2387073cd137af79ef5946a74b74fcc2638 (plain)
1
2
3
4
5
6
7
def common_element(list1, list2):
     result = False
     for x in list1:
         for y in list2:
             if x == y:
                 result = True
                 return result