Solución
solution.tsTypeScript
export function intercalateChars(first: string, second: string): string {
// Escribe tu solución aquí
let output = '';
for(let i = 0; i < Math.max(first.length, second.length); i++){
output += (first[i] || '') + (second[i] || '')
}
return output;
}0respuestas