Solución
solution.tsTypeScript
def count_letter(text: str, letter: str) -> int:
# Escribe tu solución aquí
contador = 0
new_text = text.lower()
for i in range(len(text)):
if letter == new_text[i]:
contador+=1
return contador0respuestas