Solución
solution.tsTypeScript
def most_frequent_char(text: str) -> str:
# Escribe tu solución aquí
c = 0
li = ""
for i in text:
maxi = text.count(i)
print(maxi, i)
if maxi > c:
li = i
c = maxi
return li0respuestas