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