On Thu, Jul 7, 2011 at 4:27 PM, octopusgrabbus <octopusgrab...@gmail.com> wrote:
> This code
>
> (defn ret-odd
>  [seq-val]
>  (if (not (nil? seq-val))
>    (if (odd? seq-val)
>      seq-val)))
>
> (def my-seq '(1 2 3 4 5 6 7 8 9))
>
> (map ret-odd my-seq)
>
> finds the odd numbers, but also returns nil. How do I find just the
> odd numbers?

(filter odd? my-seq)

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

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