DEV Community

Discussion on: Keeping Your Code Simple

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.