DEV Community

Discussion on: Keeping Your Code Simple

Collapse
 
theodesp profile image
Theofanis Despoudis

Even in a case of the 2 longest strings with the same length the results are partially correct. In that case, you need to return a list of strings.

Collapse
 
mwrouse profile image
Michael Rouse • Edited

The directions are clear, if string x is longer than string y, return x, otherwise return y.

So, if when going through the array you find a string with the same length, you use that one as the new longest string.

Nothing about returning an array of strings.