about | help | code help+videos | done | prefs |
public String concatAllButFirstLetters(String a, String b)
public String concatAllButFirstLetters(String a, String b) { String aWO1 = a.substring(1); String bWO1 = b.substring(1); String combo = aWO1 + bWO1; return combo; } concatAllButFirstLetters("Hello", "There") → "ellohere" concatAllButFirstLetters("Black", "White") → "lackhite" concatAllButFirstLetters("Red", "Green") → "edreen" ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 13
Copyright Nick Parlante 2017 - privacy