Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Here comes the sun solution in Clear category for Sun Angle by alterGNU
def sun_angle(time):
if (("06:00"<=time)and(time<="18:00")):
t=time.split(":")
return (int(t[0])-6)*15+int(t[1])*0.25
else:
return "I don't see the sun!"
if __name__ == '__main__':
print("Example:")
#print(sun_angle("07:00"))
print(sun_angle("07:00"))
print(sun_angle("05:00"))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert sun_angle("01:23") == "I don't see the sun!"
assert sun_angle("07:00") == 15
print("Coding complete? Click 'Check' to earn cool rewards!")
May 14, 2021
Comments: