clean up the increment logic at the bottom
This commit is contained in:
parent
a1264d825b
commit
b6f7a57580
@ -100,11 +100,7 @@ func partTwo() {
|
||||
if oxOnes >= oxZeroes {
|
||||
oxgen += (1 << (i - 1))
|
||||
}
|
||||
if coZeroes == 0 && coOnes != 0 {
|
||||
co2scrub += (1 << (i - 1))
|
||||
} else if coZeroes != 0 && coOnes == 0 {
|
||||
co2scrub += (0 << (i - 1))
|
||||
} else if coOnes < coZeroes {
|
||||
if (coZeroes == 0 && coOnes != 0) || (coOnes < coZeroes && coOnes != 0) {
|
||||
co2scrub += (1 << (i - 1))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user