I have a list of sublists of anagrams such as
L = [['terrible', 'elbirret'],
['supermonster', 'retsnomrepus'],
['you', 'uoy', 'oyu'],
['pears', 'reaps', 'spear', 'spera']]
How do I write a function that will give me the sublist or anagram group that has the longest anagrams.
i.e. if the list were
L = [['spear', 'pears', 'reaps'], ['monster', 'sternom']]
it would give me
['monster', 'sternom']