Created
August 9, 2014 08:46
-
-
Save jpsilvashy/34ee942292cbe9a13d2e to your computer and use it in GitHub Desktop.
clock_angles
This file contains 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
def clock_angles(time) | |
hour, min = time.split(":").map(&:to_i) | |
ans = ((hour * 30 + min * 0.5) - (min * 6)).abs | |
[360 - ans, ans].min | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment