I have a list of lists (sublist) that contains numbers and I only want to keep those exists in all (sub)lists.
Example:
x = [ [1, 2, 3, 4], [3, 4, 6, 7], [2, 3, 4, 6, 7]]
output => [3, 4]
How can I do this?
|
I have a list of lists (sublist) that contains numbers and I only want to keep those exists in all (sub)lists. Example:
How can I do this? |
|||
|
|
or:
|
|||||||
|
|
In one liner:
|
|||
|
|