g0201_0300.s0278_first_bad_version.VersionControl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0278_first_bad_version
open class VersionControl {
fun isBadVersion(version: Int): Boolean {
return version % 2 == 0
}
}