Created
June 4, 2009 09:15
-
-
Save sross/123531 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn all-same-order? [colls] | |
| (every? identity (for [a colls b colls] (same-order? a b)))) | |
| (all-same-order? [[1 2 3] [1 3 5] [1 2 4] [4 2]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment