Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Simple nested interrupted loop solution in Clear category for Count Consecutive Summers by Molot
def count_consecutive_summers(num):
res = 0
for i in range(1, num+1):
for j in range(i+1, num+2):
sum_seq = sum(range(i, j))
if sum_seq >= num:
if sum_seq == num:
res += 1
break
return res
if __name__ == '__main__':
print("Example:")
print(count_consecutive_summers(42))
# These "asserts" are used for self-checking and not for an auto-testing
assert count_consecutive_summers(42) == 4
assert count_consecutive_summers(99) == 6
assert count_consecutive_summers(1) == 1
print("Coding complete? Click 'Check' to earn cool rewards!")
July 12, 2019
Comments: