~janbaudisch/aoc-2019

c1208e52a1641eb8a8926867196945499fec968b — Jan Baudisch 5 years ago 1ce2ed9
day_02: make ranges inclusive
1 files changed, 2 insertions(+), 2 deletions(-)

M day_02/src/main.rs
M day_02/src/main.rs => day_02/src/main.rs +2 -2
@@ 8,8 8,8 @@ fn main() {

    println!("[PART ONE] value at position 0: {}", program.run(12, 2));

    'outer: for noun in 0..100 {
        for verb in 0..100 {
    'outer: for noun in 0..=100 {
        for verb in 0..=100 {
            program.reset();
            if program.run(noun, verb) == 19_690_720 {
                println!("[PART TWO] 100 * noun + verb = {}", 100 * noun + verb);