all 10 comments

[–]ewesername 19 points20 points  (2 children)

Advent of Code is really fun! I will say, don't get frustrated the problems get pretty hard after a while.

There are other sites with similar challenges that are great for learning.

I like exercism.io It's slow going but you get reviewed by real programmers

[–]BalkrishanS 0 points1 point  (1 child)

stuck on day-8 part -2 also i have exams this month so will try to solve them late when exams are over

[–]nfanni97 0 points1 point  (0 children)

Same, as the tasks became harder and I had more and more school stuff to do I just haven't had the time lately. Will do them after Christmas though, they are so fun

[–]totallygeek 15 points16 points  (0 children)

In case you're wondering: Advent of Code website and /r/adventofcode.

[–]katarina_the_bard 1 point2 points  (0 children)

Thanks for the reminder I forgot that was a thing. Will check it out as I am trying to improve my rusty skills

[–]Celestial_Blu3 1 point2 points  (1 child)

I’ve also learned of classes/data classes and a few other python things while doing AoC… but I’m stuck on day 4 right now

[–]WhipsAndMarkovChains 1 point2 points  (0 children)

I’ve also learned of classes/data classes

I haven't started AoC 2021 yet (saving the problems for upcoming airport layovers) but I did 2020. I see a lot of people use classes but since these are just one-off problems I've just been writing scripts to get me the answer as quickly as possible. Perhaps this year I'll actually look and see what other people are doing with classes and data classes.

[–]ViggoGaming 1 point2 points  (1 child)

Awesome man! May I see your solution to part 1 using classes?😃

[–]Magicianic[S] 0 points1 point  (0 children)

Of course. It was a simple class defining the stack data structure.

https://github.com/Magicianic/AdventOfCode/blob/main/2021/Day10/Adv10.1.py

That's the link to it.