LeetCode319 灯泡开关

LeetCode319 灯泡开关

等价于求小于等于n的平方数的个数

class Solution:
    def bulbSwitch(self, n: int) -> int:

        if n == 0: return 0

        i, ans = 1, 0
        while i * i <= n:
            ans, i = ans + 1, i + 1
        
        return ans

posted on 2022-06-29 20:03  solvit  阅读(14)  评论(0编辑  收藏  举报

导航