This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sum [ x | x <- [1..1000], x `rem` 5 == 0 && x `rem` 3 == 0 ] |
Another way using also a lambda to create a helper:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
multiple_of n = \ x -> (x `rem` n) == 0 | |
sum [y | y <- [1..1000], multiple_of 3 y && multiple_of 5 y] |
Bonus: Two ways to do the same in Clojure:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def sum (partial reduce +)) | |
(defn multiple-of [n] | |
(fn [x] (zero? (mod x n)))) | |
(def multiple-of-3? (multiple-of 3)) | |
(def multiple-of-5? (multiple-of 5)) | |
(sum | |
(for [x (range 1001) | |
:when (and (multiple-of-3? x) | |
(multiple-of-5? x))] | |
x)) | |
(sum | |
(filter #(and (multiple-of-3? %) | |
(multiple-of-5? %)) | |
(range 1 1001))) |
No comments:
Post a Comment