leetcode
Solution to some Leetcode problems written in C++
git clone
git://git.dimitrijedobrota.com/leetcode.git
Log
|
Files
|
Refs
|
README
|
LICENSE
0319.cpp (76B)
1
class Solution {
2
public:
3
int bulbSwitch(int n) { return sqrt(n); }
4
};