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

 

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

Weaving Words4 Backwards - This is a new word game - Given two words of different length, write a program that will "weave" the words together. Take the last letter from the largest string and then the last letter from the smallest string. Continue this backwards pattern. When you run out of letters from the shortest string, finish with the rest of the letters from longest string. Return the resulting "Weave Backwards Word".


weaveWords4Backwards("musical", "greatness") → "slsaecnitsauemrg"
weaveWords4Backwards("calculus", "math") → "shutlaumclac"
weaveWords4Backwards("champion", "watch") → "nhocitpamwahc"

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

public String weaveWords4Backwards(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: 158

Copyright Nick Parlante 2017 - privacy