You are viewing a single comment's thread. Return to all comments →
def viralAdvertising(n): shared=5 liked=shared//2 cumu=liked if n<2: return cumu while n>1: shared=liked*3 liked=shared//2 cumu+=liked n-=1 return cumu
Seems like cookies are disabled on this browser, please enable them to open this website
Viral Advertising
You are viewing a single comment's thread. Return to all comments →