g0201_0300.s0278_first_bad_version.VersionControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0278_first_bad_version;
// #Easy #Binary_Search #Interactive
/* The isBadVersion API is defined in the parent class VersionControl.
boolean isBadVersion(int version); */
public class VersionControl {
public boolean isBadVersion(int version) {
return version % 2 == 0;
}
}