Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clock_angle solution in Clear category for Clock Angle by spoty
def clock_angle(time):
h, m = [int(t) for t in time.split(":")]
ans = abs((h * 30 + m * 0.5) - (m * 6))
return min(abs(360 - ans), ans)
Nov. 17, 2014
Comments: