Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
-5.5 solution in Scary category for Clock Angle by veky
def clock_angle(time):
h, m = map(int, time.split(":"))
return abs((abs(30*h-5.5*m)+180)%360-180)
Oct. 29, 2014
Comments: