I have a list like ['-1', '1,2,3', '2'] and I want to extract all the integers in it.
I don't know the number of integers in each position of the list ie the list can also be ['2,3,4','1,2,3','-1'] but it will never have an empty string.
So I want that the answer should be [2,3,4,1,2,3,-1]
What is the best way to do so in terms of complexity as well as less code.
Thanks...