Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Very Clear solution in Clear category for Feed Pigeons by fatmakyba
def checkio(yem):
min=0
birds=0
while yem-birds>0:
min+=1
birds+=min
yem-=birds
return (yem % birds if yem<0 else birds)
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert checkio(1) == 1, "1st example"
assert checkio(2) == 1, "2nd example"
assert checkio(5) == 3, "3rd example"
assert checkio(10) == 6, "4th example"
May 25, 2019
Comments: