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