I'm just trying to convert to a string and compare to the reverse
(defn is-palindrome? [num]
(= (str num) (reverse (str num))))
Something like
(is-palindrome 1221)
Is returning false
|
I'm just trying to convert to a string and compare to the reverse
Something like
Is returning false |
||||
|
|
|
|||||
|
|
Try this instead:
In your code, the expression
|
||||
|
|
|
Your code returns false because it is comparing a string with a sequence, which can never be equal. You can make it work by explicitly converting the string into a seq as follows:
|
|||
|
|
|
It turns out the the overhead of manipulating collections of characters dominates, so it's actually faster to compare the original string to a reversed version even though it seems like you're comparing twice as many characters as necessary. Make sure you use clojure.string/reverse, not clojure.core/reverse. The usual Clojure convention is to end a predicate with a question mark, but not to use the "is" prefix.
|
|||
|
|
returns a List of characters
but (str 1221) is a java String |
|||
|
|