Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Feed Pigeons by bkurdasov
def checkio(n):
pigeons=[]
i=1
while n>0:
for ii in range(i):
pigeons.append(0)
i+=1
for k in range(len(pigeons)):
if n>0:
pigeons[k]+=1
n-=1
return len(pigeons)-pigeons.count(0)
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio(1) == 1, "1st example"
assert checkio(2) == 1, "2nd example"
assert checkio(5) == 3, "3rd example"
assert checkio(10) == 6, "4th example"
Dec. 25, 2013
Comments: