Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Converting time in total amount of minute solution in Clear category for Sun Angle by jiizzyy
def sun_angle(time):
m = int(time[:2])*60 + int(time[3:])
return ["I don't see the sun!", (m - 360)*360/1440][360 <= m <= 1080]
Feb. 7, 2020
Comments: