Skip to the content.

Day 2

Return to main page

Day 2 was also relatively straightforward, not much challenge up till now. The only stumbling block was that I first did not read that the up and down in part 2 no longer changed the depth by themselves. Other than that, smooth sailing.

Part 1

Now, you need to figure out how to pilot this thing.

It seems like the submarine can take a series of commands like forward 1, down 2, or up 3:

Note that since you’re on a submarine, down and up affect your depth, and so they have the opposite result of what you might expect.

The submarine seems to already have a planned course (your puzzle input). You should probably figure out where it’s going. For example:

forward 5
down 5
forward 8
up 3
down 8
forward 2

Your horizontal position and depth both start at 0. The steps above would then modify them as follows:

After following these instructions, you would have a horizontal position of 15 and a depth of 10. (Multiplying these together produces 150.)

Calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?

The input consists of two parts, so let’s split on the newline and then on the space two have every instruction separate and to be able to separate the direction and magnitude.

def _parse_data(self, input_data: str) -> Any:
    return [x.split(" ") for x in input_data.split("\n") if x]

First identify the direction and then add or subtract the magnitude from the corresponding position. Don’t forget that the magnitude still needs to be converted to int.

def _solve_part1(self, parsed_data: Any) -> Any:
    x = 0
    d = 0
    for direction in parsed_data:
        if direction[0] == "forward":
            x += int(direction[1])
        elif direction[0] == "up":
            d -= int(direction[1])
        else:
            d += int(direction[1])
    return x * d

Part 2

Based on your calculations, the planned course doesn’t seem to make any sense. You find the submarine manual and discover that the process is actually slightly more complicated.

In addition to horizontal position and depth, you’ll also need to track a third value, aim, which also starts at 0. The commands also mean something entirely different than you first thought:

Again note that since you’re on a submarine, down and up do the opposite of what you might expect: “down” means aiming in the positive direction.

Now, the above example does something different:

After following these new instructions, you would have a horizontal position of 15 and a depth of 60. (Multiplying these produces 900.)

Using this new interpretation of the commands, calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?

This took one more attempt because I didn’t read carefully and kept the depth addition/substraction for the up and down direction in the code first. Easy fix afterwards.

def _solve_part2(self, parsed_data: Any) -> Any:
    x = 0
    d = 0
    aim = 0
    for direction in parsed_data:
        if direction[0] == "forward":
            x += int(direction[1])
            d += aim * int(direction[1])
        elif direction[0] == "up":
            aim -= int(direction[1])
        else:
            aim += int(direction[1])
    return x * d

Return to main page