On Dec 25, 1:52 am, Tom Hicks <hickstoh...@gmail.com> wrote: > A slight modification, which I think avoids counting each collection > twice: > > (defn append-val [val & colls] > (let [lengths (map count colls) > maxlen (apply max lengths)] > (map #(concat %1 (repeat (- maxlen %2) val)) colls lengths) > ) > )
Good one! -- 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