Solución
solution.tsTypeScript
def remove_falsy(values: list) -> list:
# Escribe tu solución aquí
not_falsy = []
for i in range(len(values)):
if bool(values[i]) == True:
not_falsy.append(values[i])
return not_falsy0respuestas