Solución
solution.tsTypeScript
export function countUniqueChars(text: string): number {
// Escribe tu solución aquí
if (text.length !==0) {
let contador = 0;
const textSet = new Set(text);
return textSet.size;
};
return 0;
};0respuestas