Feu les funcions següents utilitzant funcions d’ordre superior (i altres funcions predefinides) de Clojure i sense utilitzar recursivitat.
Puntuació
Cada funció puntua 16 o 17 punts.
Input
(eql '(1 2 3) '(1 2 3)) (eql '(1 2 3) '(3 2 1)) (eql '(1 2 3) '(1 2 3 4)) (prod-of-evens '(2 10 5)) (scalar-product '(2.0 1.0) '(3.0 2.0)) (count-in '((3 2 3) (3) () (2 2)) 3) (first-word " Volem pa amb oli ")
Output
true false false 20 8.0 (2 1 0 0) Volem