id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

longestString


Return the String that has the longest length. Assume that the array words has at least one item


longestString(["Sally", "bob", "charles", "joe"]) → "charles"
longestString(["abc", "bab", "bbo", "abbaacca", "abcabc"]) → "abbaacca"
longestString(["New Hampshire", "New York", "California", "Texas"]) → "New Hampshire"

...Save, Compile, Run (ctrl-enter)

public String longestString( String[] words) }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 201 Post-solution available

Copyright Nick Parlante 2017 - privacy