Solución
solution.tsTypeScript
def count_unique_chars(text: str) -> int:
contador = 0
lista = []
for i in text:
if i not in lista :
lista.append(i)
contador = len(lista )
# Escribe tu solución aquí
return contador
# repeats = set()
# for letra in text:
# if letra:
# repeats.add(letra)0respuestas