Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for Sun Angle by vova1238
def sun_angle(time):
minutes = int(time[:2])*60+int(time[3:])
return ((minutes-360)*180)/720 if 6*60 <= minutes <= 18*60 else "I don't see the sun!"
June 6, 2021