In Python 3.x, I have a list of lists:
[['a','b','c'], ['a', 'c'], ['c', 'd'] ]
I saw this answer, but it only applies to a single list. How would I do this for a list of lists? My desired output would be a sorted list (or a sortable list) of the frequency of a particular item in a list.
Something like:
{a: 2, b: 1, c: 3, d: 1 }