Solución
solution.tsTypeScript
def both_true(first_value: bool, second_value: bool) -> bool:
# Escribe tu solución aquí
if first_value and second_value:
return True
return False0respuestas
def both_true(first_value: bool, second_value: bool) -> bool:
# Escribe tu solución aquí
if first_value and second_value:
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.