You are viewing a single comment's thread. Return to all comments →
def beautifulDays(i, j, k): count=0 for day in range(i,j+1): if (abs(day-int(str(day)[::-1])))%k==0: count+=1 return count
or
return sum([1 if (abs(day-int(str(day)[::-1])))%k==0 else 0 for day in range(i,j+1)])
Seems like cookies are disabled on this browser, please enable them to open this website
Beautiful Days at the Movies
You are viewing a single comment's thread. Return to all comments →
or