• + 0 comments

    Python Solution: def lights(n): # Write your code here if n==1: return 1 else: return ((2**n-1)%10**5)