Print Alternating Characters From Two Strings (Interleaving) Using Recursion Java
- by babi2balla
I'm trying to write a method that uses recursion to print the string formed by "interleaving" the strings str1 and str2. In other words, it should alternate characters from the two strings: the first character from str1, followed by the first character from str2, followed by the second character from str1, followed by the second character from str2, etc.
How would I go about this? Any ideas are greatly appreciated!! Thanks