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

 

andersoniii.edwin@cusd80.com > Lexi1
prev  |  next  |  chance

Determine the lexicographic order between two words. Write the method to receive two strings and return the concatenation of the two strings (in order) Ex = apple and pie would return applepie - banana and apple would return applebanana. Ignore the case of the string


Lexi1("Apple", "Pie") → "applepie"
Lexi1("APPLE", "apple") → "appleapple"
Lexi1("applepie", "apples") → "applepieapples"

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

public String Lexi1(String str1, String str2) }

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: 114 Post-solution available

Copyright Nick Parlante 2017 - privacy