Solución
solution.tsTypeScript
def starts_with(text: str, prefix: str) -> bool:
# Escribe tu solución aquí
return text.find(f"{prefix}") == 0
0respuestas
def starts_with(text: str, prefix: str) -> bool:
# Escribe tu solución aquí
return text.find(f"{prefix}") == 0
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.