aboutsummaryrefslogtreecommitdiff
path: root/rosetta/sum-of-squares.neb
blob: be761945313352da7491c55ffcd43746fdecfb5b (plain)
1
2
(func sum-of-squares (lst :[:int])
    (reduce + (map (lambda (x) (* x x)) lst) 0))