-
Notifications
You must be signed in to change notification settings - Fork 0
319_BulbSwitcher
a920604a edited this page Apr 14, 2023
·
1 revision
class Solution {
public:
int bulbSwitch(int n) {
return sqrt(n);
}
};
- time complexity
O(1)
- space complexity
O(1)
footer