Created
April 1, 2016 13:26
-
-
Save ochronus/a4cd55633da68b688654bf94c722279f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| (defn palindrome? [s] | |
| (= (reverse (str s) ) (seq (str s)))) | |
| (apply max | |
| (filter palindrome? | |
| (for | |
| [a (range 100 1000) | |
| b (range 100 1000)] | |
| (* a b)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment