Fork me on GitHub
#adventofcode
<
2021-04-22
>
kj08:04:53

I've started working through Advent of Code 2020 while trying to learn Clojure, and I've just noticed that the challenges aren't being displayed in numerical order. The story doesn't make any sense if I follow them top-to-bottom (planes landing before they've taken off etc.), but can anyone who's already completed them tell whether they've been re-ordered in terms of difficulty? Or has something just gone a bit haywire?

nbardiuk08:04:54

I believe it is to support the story, a problem is aligned with position on the map. The hero is traveling all over the world and challenges are not aligned. In general problems are not ordered by complexity, you can try to figure out complexity by looking at leaderboard for each day to see how long it took to solve them for competitive people https://adventofcode.com/2020/leaderboard/day/9 . But this will not tell how hard it would be for you, if you are not into competitive programming

kj08:04:20

Ah, I see, I hadn't even realised that was a map! That makes sense now, thank you!

Mno10:04:45

In general it does tend to be harder in the later days, but that also may vary wildly depending on where your hobbies/skills lie. Some are efficiency problems others are math oriented, others are just complicated logic, its a really mixed bag, which is what makes it awesome

Mno10:04:39

So day 10 might be 3 times harder for you than day 11, but it could be the easiest for someone else because they reading about binary trees recently

Mno10:04:02

Good luck!

❤️ 2
pez12:04:48

It started to get too hard for me at day 14 iirc. At day 17 I had to drop out and become a spectator, b/c it took too much of my time. I had wonderfully fun all the 25 days, much thanks to this channel.

Stuart15:04:16

Im glad to hear othrr people found day 14 hard. I couldn't get both stars tjst day and also stopped around 17/18 ish. I always assume that im jist a shitty dev for not finishing. So im happy others find it hard!

pez15:04:30

Haha, I feel both impressed and a bit depressed when I see vides like this: https://www.youtube.com/watch?v=lU3awBr5C7E

John Flinchbaugh14:04:25

2020 was a little easier to skip a day or a part2, so i made it pretty far with some skips. it did get hard at times.

ryan echternacht12:05:41

Definitely this. 2019's opcode thing was cool, but made skipping near impossible

John Flinchbaugh14:04:46

there were times it felt like it was built to be solved functionally with list structures.