Question: 
Write a function to check if a nested list is a subset of another nested list.


Model's Code:
def check_subset(list1, list2):
    return all(any(sublist == item for item in list1) for sublist in list2)



Sample Correct Code:
def check_subset(list1,list2): 
    return all(map(list1.__contains__,list2)) 


Asserts:
assert check_subset([[1, 3], [5, 7], [9, 11], [13, 15, 17]] ,[[1, 3],[13,15,17]])==True
assert check_subset([[1, 2], [2, 3], [3, 4], [5, 6]],[[3, 4], [5, 6]])==True
assert check_subset([[[1, 2], [2, 3]], [[3, 4], [5, 7]]],[[[3, 4], [5, 6]]])==False


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 872 of 974: 670/872 (76.8348623853211%): success