Solución
solution.tsTypeScript
def at_least_one_true(first_value: bool, second_value: bool) -> bool:
# Escribe tu solución aquí
if first_value or second_value:
print("True")
return True
print("False")
return False0respuestas