That completes without giving me any error.

I'm using clojure 1.2.0 on OS X 10.6.6, and the JVM is 1.6.0_22.

On Jan 19, 1:42 am, Andreas Liljeqvist <bon...@gmail.com> wrote:
> Reposting this from earlier mail about Euler 14.
>
> (defn cseq [n]
>   (if (= 1 n)
>     [1]
>     (cons n (cseq (if (even? n)
>             (/ n 2)
>             (+ (* 3 n) 1 ))))))
>
> (apply max-key count (map cseq (range 1 1000000)))
>
> Gives a heap error.
> cseq is at most 525 elements long.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to