0
/ 2.0
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".
Examples:
allStar("abc") -> "a*b*c"
allStar("a") -> "a"
Your feedback will appear here when you check your answer.