Leetcode 319 Solution
This article provides solution to leetcode question 319 (bulb-switcher)
Access this page by simply typing in "lcs 319" in your browser address bar if you have bunnylol configured.
Leetcode Question Link
https://leetcode.com/problems/bulb-switcher
Solution
class Solution {
public:
int bulbSwitch(int n) {
return sqrt(n);
}
};