Advent of Code 2024 | Day 25 "Code Chronicle"

  Рет қаралды 1,431

HyperNeutrino

HyperNeutrino

Күн бұрын

Пікірлер: 24
@hyper-neutrino
@hyper-neutrino 18 күн бұрын
still apologies for the poor audio/video quality, i am still traveling so i'm still on a laptop with a worse mic
@eavdmeer
@eavdmeer 18 күн бұрын
The microphone isn't even half bad. Sounds like the gain is set too high, making it clip the audio
@romainbodec737
@romainbodec737 14 күн бұрын
Hello, I really appreciated following your videos / explanations about the Advent Of Code 2024 challenge. Thank you for your work and have a wonderful end of year ! Cheers from France (Brest)
@yajusgakhar6969
@yajusgakhar6969 18 күн бұрын
Your explanations are what helped me, a first timer, not only complete the problems but also understand the logic behind them. Never stop making vids and thank you for your service.
@Cwiet
@Cwiet 18 күн бұрын
Wow that parsing is just next level. It's concise, clean and readable at the same time. It turned out that your initial solution with counting “#” perform the best ~47 ms whereas the others take around 110 ms longer. My initial approach took 10 ms and was based on making sets of tuples with coordinates of “#", which then I simply check if they’re disjointed - if there was none, then it was a match. But my parsing was way more bloated and with more ifs.
@leesinisbae8278
@leesinisbae8278 17 күн бұрын
Thank your for your explanations and helping me through this year too!
@peterschrader-ki5cl
@peterschrader-ki5cl 16 күн бұрын
🙏Thanks for all your concise explanations (waive day 24 part 2😊). And congrats to a finishing place on the global leaderboard👍
@eavdmeer
@eavdmeer 18 күн бұрын
My favorite advent of code channel. You've definitely pulled me though a couple of them. Thanks for taking the time to make these videos. Happy holidays!
@dordanov
@dordanov 18 күн бұрын
Thank your for all the helpful and insightful videos. I started AoC last year, and wouldn't have been able to finish (and optimise) all the puzzles without your awesome explanations and insights. Much appreciated!
@aethiis
@aethiis 18 күн бұрын
Thank you for your videos and happy holidays !
@luked.1734
@luked.1734 18 күн бұрын
This was my first year doing AOC, and I'm glad I found your channel. Great explanations every single time, with some cool tidbits along the way (raw strings are a cool thing to know). Also cool to see how concise python can be. Hope to see you next year!
@enderesting
@enderesting 18 күн бұрын
It's my first time finishing all 50 stars this year, and I can say for certain I won't have done it without your videos! Thank you for going through your thought process every day, I feel like I learnt a lot about how AoC puzzles worked + new way to work around python! Happy holidays & New Year!
@shubhangmehrotra1298
@shubhangmehrotra1298 18 күн бұрын
Thank you for making these videos!!
18 күн бұрын
Thank you very much for your videos. They provided me the insights I needed to complete the AoC 2024 in Haskell.
@pmareke
@pmareke 18 күн бұрын
Thanks to you for make us better developers ❤, see you next year!
@klif_n
@klif_n 18 күн бұрын
Thank you so much for the excellent explanations. You really helped make this year’s AoC a learning experience! Happy Holiday’s and safe travels. I look forward to the recap video.
@MegaPacoquinha
@MegaPacoquinha 17 күн бұрын
Thank you for your videos! Helped me a lot when I got stuck on some problems
@delekmiller2362
@delekmiller2362 18 күн бұрын
thank you so much for making these videos ❤
@petrlos5374
@petrlos5374 18 күн бұрын
thank you for all your videos - your explanations are relative easy to understand, to follow what u do and i have learned really a lot from you.. thank you that you did not give up after so many LLM took part this year.. hopefuly "see you" next year :)
@Volganian
@Volganian 18 күн бұрын
Thank you for all thorough explanations. Happy holidays!
@TheWitzig
@TheWitzig 18 күн бұрын
Thank you for your videos! Well explained! :)
@clonew0lf
@clonew0lf 17 күн бұрын
This was a great series. Thanks for helping us through it! I would love to see another pass at day 21 if you get around to it :D
@SqueezeWizard
@SqueezeWizard 14 күн бұрын
Thank you, you're the best! bye, hope to see you next year!!
@rastislavsvoboda4363
@rastislavsvoboda4363 18 күн бұрын
Thank you for all your videos and for providing detailed explanations. See you next year! there is one IMHO simple solution - set "theory" 101 - intersection (&) ;-) def solve1(text): blocks = text.split(" ") block_rows = blocks[0].splitlines() R = len(block_rows) C = len(block_rows[0]) locks = [] keys = [] for block in blocks: block_lines = block.splitlines() pins = set((r, c) for r in range(R) for c in range(C) if block_lines[r][c] == "#") if all(x == "#" for x in block_lines[0]): locks.append(pins) elif all(x == "#" for x in block_lines[-1]): keys.append(pins) else: assert False return len([1 for lock in locks for key in keys if len(lock & key) == 0])
All Rust string types explained
22:13
Let's Get Rusty
Рет қаралды 194 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Advent of Code 2024 | Day 24 "Crossed Wires"
58:52
HyperNeutrino
Рет қаралды 3,4 М.
Keynote: Advent of Code, Behind the Scenes - Eric Wastl
46:01
The Dark Matter of AI [Mechanistic Interpretability]
24:09
Welch Labs
Рет қаралды 128 М.
*Next-door 10x Software Engineer* [FULL]
4:50
Programmers are also human
Рет қаралды 878 М.
Advent of Code 2024 Day 25
8:37
Neil Thistlethwaite
Рет қаралды 1,9 М.
God-Tier Developer Roadmap
16:42
Fireship
Рет қаралды 7 МЛН
Advent of Code 2024 | Day 20 "Race Condition"
20:56
HyperNeutrino
Рет қаралды 2,7 М.
Coding Adventure: Rendering Text
1:10:54
Sebastian Lague
Рет қаралды 808 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН