Say that I have
function(Dict[str, List[str]] -> List[str]
how could I return a list that contains the str in the Dict with most elements in the list?
function({'a':['1','2'], 'b':['1'], 'c':['1', '2']})
['a', 'c']
The function should be able to still return the str even if more than one str has the most elements in the list just like the above example. Thank you very much in advance!