首页 > 其他 > 详细

Leetcode 319 Bulb Switcher 找规律

时间:2016-01-16 22:13:54      阅读:134      评论:0      收藏:0      [点我收藏+]

有n盏关着的灯,第k轮把序号为k倍数的关着的灯打开,开着的灯关闭。

class Solution {
public:
    int bulbSwitch(int n) {
        return (int)sqrt(n*1.0);
    }
};

 

Leetcode 319 Bulb Switcher 找规律

原文:http://www.cnblogs.com/onlyac/p/5136361.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!