Solución
solution.tsTypeScript
def starts_with(text: str, prefix: str) -> bool:
if text.startswith(prefix):
return True
else:
return False
# Escribe tu solución aquí
return False0respuestas
def starts_with(text: str, prefix: str) -> bool:
if text.startswith(prefix):
return True
else:
return False
# Escribe tu solución aquí
return FalseAú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.