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

g0201_0300.s0278_first_bad_version.VersionControl.kt Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package g0201_0300.s0278_first_bad_version

open class VersionControl {
    fun isBadVersion(version: Int): Boolean {
        return version % 2 == 0
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy