I have a list of strings like the one below:
stringList = ["a" , "aa", "aaa", "aaaa", "aaab", "aaac"]
What I am trying to do is return all the longest strings in the list, I have tried using the max function but it only returns one value, whereas in this case there are 3 strings with a length of 4.
Thanks for any help!