On Fri, Jul 17, 2009 at 4:41 PM, Mark Engelberg <mark.engelb...@gmail.com>wrote:

>
> On Fri, Jul 17, 2009 at 1:32 PM, samppi<rbysam...@gmail.com> wrote:
> >
> > Is there a function in clojure.core or clojure.contrib so that:
> >  (and (mystery-fn '(a b c d) '(a b))
> >        (not (mystery-fn '(a b c d) '(a b d))))
>
>
> how about something like:
> (defn mystery-fn [l1 l2] (every? identity (map = l1 l2)))
>

user=> (mystery-fn '(a b) '(a b c d))
true

How about something like:
(defn mystery-fn [l1 l2] (and (<= (count l2) (count l1)) (every? identity
(map = l1 l2))))

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