Created
May 25, 2015 19:11
-
-
Save samccone/6830bf9ffaebbdb39e87 to your computer and use it in GitHub Desktop.
your_ride_is_here
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 scheme [encoded] | |
(mod (->> (seq encoded) | |
(map #(-> (int %) (- 64))) | |
(reduce *)) 47)) | |
(defn ride [group comet] | |
(if (= (scheme group) (scheme comet)) "GO" "STAY")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment