Using python to write this function, thanks.
Write a function non_intersecting that takes two lists as parameters. The first list L1 has elements that are themselves lists of strings. The second L2, is a list of strings.
Non_intersecting should return a new list that contains the original lists inside L1 that do not contain any of the strings in L2. Your function should not change the original lists passed as parameters.