0
/ 50
Given a string, compute recursively a new string where all the adjacent chars are now separated by a "*". So given "hello", return...
Given a string, compute recursively a new string where all the adjacent chars are now separated by a "*". So given "hello", return "h*e*l*l*o".
Your feedback will appear here when you check your answer.