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

 

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

Weaving Three Words - This is a new word game - Given three words of same length, write a program that will "weave" the words together. Take the first letter from String str1 and then a letter from String str2, and finally a letter from the last string. Continue this pattern and return the resulting "Weave Word".


weaveThreeWords1("abc", "abc", "abc") → "aaabbbccc"
weaveThreeWords1("q", "s", "t") → "qst"
weaveThreeWords1("weave", "words", "great") → "wwgeorarevdaest"

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

public String weaveThreeWords1(String str1, String str2, String str3) }

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: 109

Copyright Nick Parlante 2017 - privacy