Solución
solution.tsTypeScript
def count_uppercase(text: str) -> int:
a="ABCDEFGHIJKLMNÑOPQRSTUVWXYZ"
b=[j for j in text if j in a]
return len(b)
0respuestas
def count_uppercase(text: str) -> int:
a="ABCDEFGHIJKLMNÑOPQRSTUVWXYZ"
b=[j for j in text if j in a]
return len(b)
Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.