6 votes

Advent of Code 2022 post-mortem discussion

This space intentionally left blank.

5 comments

  1. [2]
    3d12
    Link
    Confirmed, there is no day 26. Instead, how about a brief post-mortem from participants? Favorite/least favorite problems, any interesting workarounds, or something new you learned? I struggled...

    Confirmed, there is no day 26. Instead, how about a brief post-mortem from participants? Favorite/least favorite problems, any interesting workarounds, or something new you learned?

    I struggled immensely with day 15, and that threw my rhythm off completely for the rest of the event. I also didn't bother posting any of my solutions in the threads this year, but since my wife is now learning Python, I tried doing the problems in Python so she could follow along. I took much better advantage of list comprehension this time, to great effect too, since I liked the map() functionality of Javascript so much when I used that last year.

    My favorite problem this year was the CRT display one (day 10) just because I love the problems with a visual solution (see also: transparent origami, AoC 2021 Day 13)

    My repo of solution code: https://github.com/3d12/adventofcode2022-py

    I also admit I had to peek at the thread for day 13 to find the solution to part 2. My math skills were failing me and I tried a bunch of different modulo numbers but didn't even think of the lowest common multiple.

    2 votes
    1. cfabbro
      Link Parent
      Good idea. I have edited the title to reflect that. I can't edit the topic text though, so people will just have to ignore it. :P

      Good idea. I have edited the title to reflect that. I can't edit the topic text though, so people will just have to ignore it. :P

  2. [3]
    tomf
    Link
    I don't think this is happening.

    I don't think this is happening.

    1. [2]
      cfabbro
      Link Parent
      Yeah, probably time to end it now, @Deimos.

      Yeah, probably time to end it now, @Deimos.

      1 vote
      1. tomf
        Link Parent
        --- Day 26: Just a Couple of Pals --- Two elves are standing around when another two join the group. xx yy With this example dataset we can clearly see there are two x elves and two y elves,...
        --- Day 26: Just a Couple of Pals ---
        
        Two elves are standing around when another two join the group. 
        
        xx
        yy
        
        With this example dataset we can clearly see there are two x elves and two y elves, giving us a total of four.
        
        ---
        
        Here is your input
        
        xx
        xx
        yy
        
        ---
        
        How many total elves are hanging out?
        
        
        4 votes