Given two strings, A and B, create a bigger string made of the first char of A, the first char of B, the second char of A, the second char of B, and so on. Any le
Here is my attempt::
public static String mixString1(String a,String b){
String result=""; int startValue = 0; int increment = 0; if(a.length()<=b.length()){ for(int i=0;i=b.length()){ for(int i=0;ib.length()){ for(int j=startValue;j