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
(reverse (range 100 1000)) ; (999 998 997 996 995 994 ...) | |
(defn palindrome? [number] | |
(let [num-str (str number)] | |
(= num-str (apply str (reverse num-str))))) | |
(palindrome? 9009) ; true | |
(palindrome? 9008) ; false | |
(apply | |
max | |
(filter | |
palindrome? | |
(let [numbers (reverse (range 10 100))] | |
(for [x1 numbers x2 numbers] | |
(* x1 x2))))) ; 9009 | |
(defn products [lower higher] | |
(let [numbers (reverse (range lower (+ higher 1)))] | |
(for [x1 numbers x2 numbers] | |
(* x1 x2)))) | |
(defn largest-palindrome-product [lower higher] | |
(apply max (filter palindrome? (products lower higher)))) | |
(largest-palindrome-product 10 99) ; 9009 | |
(largest-palindrome-product 100 999) ; 906609 |
It was nice to practise with for.
No comments:
Post a Comment