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 #Algorithm_I_Day_1_Binary_Search #Binary_Search_I_Day_5
// #Level_1_Day_7_Binary_Search #2022_03_14_Time_12_ms_(99.50%)_Space_39_MB_(65.09%)
/* 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;
}
}