Skip to content

Instantly share code, notes, and snippets.

View tchnorider's full-sized avatar
⌨️

Laura L. tchnorider

⌨️
View GitHub Profile
@tchnorider
tchnorider / BadVersion.java
Last active February 7, 2023 20:29
Returns first bad version
public class BadVersion {
public int badOne = 1;
// AC
public int firstBadVersion(int n) {
int right = n;
int left = 1;
while(left < right) {