Given a nested list and a string, the function will return all instances of strings within the nested list that contain the desired string, as well as a list of these strings. E.g. searching 'hi' ...
Your task is to recreate this matrix by using nested listed comprehensions. Recall that you can create one of the rows of the matrix with a single list comprehension. To create the list of lists, you ...