Skip to content

Instantly share code, notes, and snippets.

@jpsilvashy
Created August 9, 2014 08:46
Show Gist options
  • Save jpsilvashy/34ee942292cbe9a13d2e to your computer and use it in GitHub Desktop.
Save jpsilvashy/34ee942292cbe9a13d2e to your computer and use it in GitHub Desktop.
clock_angles
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