Last active
December 22, 2015 16:49
-
-
Save Jabbslad/6501899 to your computer and use it in GitHub Desktop.
Revisions
-
Jabbslad revised this gist
Sep 9, 2013 . 1 changed file with 7 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,10 @@ ; 43: Write a function which reverses the interleave process into x number of subsequences. (fn [coll n] (apply map list (partition n coll))) ; 66: Given two integers, write a function which returns the greatest common divisor. (fn [x y] (if (= y 0) x (recur y (rem x y))))
-
Jabbslad created this gist
Sep 9, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ ; 43: Write a function which reverses the interleave process into x number of subsequences. (fn [coll n] apply map list (partition n coll))