Solución
solution.tsTypeScript
def intercalate_chars(first: str, second: str) -> str:
first=list(first)
second=list(second)
f=0
c=first.copy()
for k,l in enumerate(c):
second.insert(k+f, l)
f+=1
return "".join(second)0respuestas