Whoa.. I like this better than my solution. I think my brain is still
in the death-throws of Java-think.
Your solution is smaller and more readable... it reads basically like
the definition of palindrome. And it doesn't do a count.
Since the = function (I assume) "short circuits", and since seq and
reverse are lazy, then I think this should be at worst an O(n)
operation, where the worst case is if your collection happens to be a
palindrome.
Or wait a minute... what is the performance of reverse on a list?
O(n^2)? Are Clojure lists singly or doubly linked?