summaryrefslogtreecommitdiff
path: root/progs/a579.py
blob: 675ecc129d581969bc9cfae24b107173e7df7b85 (plain)
1
2
3
4
5
6
7
def check_subset_list(list1, list2): 
    l1, l2 = list1[0], list2[0] 
    exist = True
    for i in list2: 
        if i not in list1: 
            exist = False
    return exist