Given a input two string (inputStr1) and (inputStr2), merge these two string by combining elements of same index
Input String: "Hello"
Deletion String: "123"
Output String: "H1e2l3lo"
@Override
public String func (String inputStr1, String inputStr2){
if(inputStr1==null)
...
Array - Shuffle merge
Continue Reading →