Solución
solution.tsTypeScript
def both_true(first_value: bool, second_value: bool) -> bool:
is_true = None
if first_value and second_value:
is_true = True
else:
is_true = False
# Escribe tu solución aquí
return is_true0respuestas