Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Uncategorized category for Count Consecutive Summers by fed.kz
from sympy import divisors as d
count_consecutive_summers=lambda n:sum(x%2for x in d(n))
# Idea taken from user @Phil15
Dec. 5, 2018
Comments: