Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sun Angle by JingMeng
def sun_angle(time):
w = 0.25
h, m = time.split(':')
minutes = int(h) * 60 + int(m) - 360
return minutes * w if 0 <= minutes <= 720 else "I don't see the sun!"
June 20, 2019