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