All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0301_0400.s0319_bulb_switcher.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g0301_0400.s0319_bulb_switcher

// #Medium #Math #Brainteaser #2022_11_12_Time_214_ms_(77.78%)_Space_33.4_MB_(55.56%)

class Solution {
    fun bulbSwitch(n: Int): Int {
        return if (n < 2) {
            n
        } else Math.sqrt(n.toDouble()).toInt()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy