Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 244 Bytes

319.md

File metadata and controls

21 lines (13 loc) · 244 Bytes

319 Bulb Switcher

Description

link


Solution

See Code


Code

class Solution:
    def bulbSwitch(self, n: 'int') -> 'int':
        return int(n**(0.5))