Logo

Programming-Idioms

  • Rust

Idiom #202 Sum of squares

Calculate the sum of squares s of data, an array of floating point values.

let s = data.iter().map(|x| x.powi(2)).sum::<f32>();
(defn square [x] (* x x))

(def s (transduce (map square) + data))

This doesn't create any intermediate collection

New implementation...
< >
Bart