I've started learning clojure and I managed to get a few of the problems on Project Euler worked out but for whatever reason I've had a tough time with this one.

Here is the code I have written for it. It looks to run fine until it gets to the second outer loop. Then it fails and the error message looks like this. I did some googling for this error and it seems to be about having extra parens but I'm not seeing where they are in my code. Alas I've probably just overlooked something simple.

Also if there are any bad coding conventions in there please let me know.

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Line 13 has an error. The > should be prefix:

(if (and (palindrome? currVal) (> currVal targetP))

The error message is telling you that a Long could not be cast to a function. (i.e. currVal is not a function)

link|improve this answer
I knew it would be something dumb like that. Thanks! – sgarrett Feb 7 at 2:41
1  
Anytime! In terms of cleaning up your code, I'd recommend avoiding defs (learn let, et.al. instead). Also, probably want to start with the high numbers rather than the low. That way, your first result is your answer. Finally, if you haven't tried it, check out 4clojure.com. It will get you into the clojure mindset. – Vinod Kurup Feb 7 at 2:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.