Solución
solution.tsTypeScript
def both_true(first_value: bool, second_value: bool) -> bool:
if first_value and second_value:
return True
else:
return False
both_true(True, True)0respuestas
def both_true(first_value: bool, second_value: bool) -> bool:
if first_value and second_value:
return True
else:
return False
both_true(True, True)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.