Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by Matvey127
def sun_angle(time):
a, b = map(int, time.split(":"))
time = a * 60 + b
return (time - 360) / 4 if 360 <= time <= 1080 else "I don't see the sun!"
Sept. 6, 2019
Comments: