summaryrefslogtreecommitdiff
path: root/progs/a661.py
blob: 124d3f88b2f3d7f826c158912c7c28fddbf6bcbd (plain)
1
2
3
def intersection_nested_lists(l1, l2):
    result = [[n for n in lst if n in l1] for lst in l2]
    return result