You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide more example, if I had an array of: inputArray = ["aba", "aa", "ad", "vcd", "agba"], would the output be: allLongestStrings (inputArray) = ["agba"]
I would like to be assigned this issue, thank you.
....
Proporcione más ejemplos, si tuviera una matriz de: inputArray = ["aba", "aa", "ad", "vcd", "agba"], la salida sería: allLongestStrings (inputArray) = ["agba" ]
Dada uma matriz de strings, retorna outra matriz contendo todas as suas strings mais longas.
Para
inputArray = ["aba", "aa", "ad", "vcd", "aba"]
, a saída deve serallLongestStrings (inputArray) = ["aba", "vcd", "aba"]
.The text was updated successfully, but these errors were encountered: