Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by vkruta
def sun_angle(time):
h = int(time[0:2])*60 + int(time[3:5])
return (h - 360) / 4 if 360 <= h <= 1080 else "I don't see the sun!"
Sept. 8, 2020