Last active
November 3, 2015 08:13
-
-
Save dd1994/d10147d972bd23e47447 to your computer and use it in GitHub Desktop.
Revisions
-
dd1994 revised this gist
Nov 3, 2015 . 1 changed file with 2 additions and 2 deletions.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,5 +1,5 @@ (defn gcd [div rem] (if (= rem 0) div (gcd rem (mod div rem)))) -
dd1994 revised this gist
Nov 3, 2015 . 1 changed file with 4 additions and 5 deletions.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,6 +1,5 @@ (defn gcd [div rem] (if (= rem 0) div (gcd rem (mod div rem)))) -
dd1994 revised this gist
Nov 1, 2015 . 1 changed file with 3 additions and 3 deletions.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,6 +1,6 @@ (defn gcd [a b] (loop [div b rem (mod a b)] (if (= rem 0) div (recur rem (mod div rem))))) -
dd1994 revised this gist
Nov 1, 2015 . No changes.There are no files selected for viewing
-
dd1994 created this gist
Nov 1, 2015 .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,6 @@ (defn gcd [a b] (loop [div b rem (mod a b)] (if (= rem 0) div (recur rem (mod div rem)))))