(defn proper-subset? "Is s1 a proper subset of s2?" [set1 set2] {:tag Boolean} (and (< (count set1) (count set2)) (every? set2 set1)))
Comments top
No comments for proper-subset?. Log in to add a comment.