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

 

tlsmith2@wsfcs.k12.nc.us > wordGlue
prev  |  next  |  chance

Given two strings, word and a separator sep, return a big string made of count occurrences of the word, separated by the separator string.


wordGlue("Word", "X", 3) → "WordXWordXWord"
wordGlue("This", "And", 2) → "ThisAndThis"
wordGlue("This", "And", 1) → "This"

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

public String wordGlue(String word, String sep, int count) { }

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

Copyright Nick Parlante 2017 - privacy