You are viewing a single comment's thread. Return to all comments →
Python Solution: def lights(n): # Write your code here if n==1: return 1 else: return ((2**n-1)%10**5)
Seems like cookies are disabled on this browser, please enable them to open this website
Diwali Lights
You are viewing a single comment's thread. Return to all comments →
Python Solution: def lights(n): # Write your code here if n==1: return 1 else: return ((2**n-1)%10**5)