Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
forever forever she stay on my mind like forever solution in Clear category for Count Consecutive Summers by fishsouprecipe
def count_consecutive_summers(num):
ways = 0
for i in range(1, num + 1):
s = 0
for j in range(i, num + 1):
s += j
if s == num:
ways += 1
break
return ways
March 6, 2020