Christian <soulbea...@gmail.com> writes:

Hi Christian,

> For those unfamiliar, Project Euler Problem 2 states:
> find the sum of all

Sounds like (reduce + ...).

> even-valued fibonacci terms

Sounds like (filter even? ...)

> that are less than four million.

Hm, that's a bit more challenging.  I think, you could go with

  (for [fib (fib-seq) :while (< fib 4000000)]
     fib)

Of course, this is all completely untested. :-)

Bye,
Tassilo

-- 
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