partition-by will probably get you started - turning (a1 a2 a3 b1 b2 c1 c2 c3 c4) into ((a1 a2 a3) (b1 b2) (c1 c2 c3 c4)) - then map some function over that?
On Wed, Oct 10, 2012 at 5:22 PM, Brian Craft <craft.br...@gmail.com> wrote: > I have a long list (or seq? result of calling map) something like (a1 a2 > a3 b1 b2 c1 c2 c3 c4) > > I need to replace adjacent items with related attributes with single > elements, like > > (a b c) > > where 'a' is derived from a1 a2 a3, and so-forth. > > So, again, I'm not sure how to approach this in a functional way. Anyone > have a suggestion? > > -- 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