Files
LeetCode-Go/leetcode/0319.Bulb-Switcher/319.Bulb Switcher.go
2021-11-15 11:42:20 +08:00

8 lines
99 B
Go

package leetcode
import "math"
func bulbSwitch(n int) int {
return int(math.Sqrt(float64(n)))
}