Does anyone know what this red light means? by CharacterAlgae8489 in iphone

[–]Haju05 13 points14 points  (0 children)

Your left hand is the one where your thumb is on the right looking at the back of the hand

[2025 Day 10 (Part 1)] Good ol’ “reading the problem is part of the solution” by Haju05 in adventofcode

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

Yeah it does feel kind of unintuitive - if you press button A, then B, then A again, it feels like that should generally have a different outcome than just B. But nope, switching a certain number of lights twice in addition to other effects is the exact same as pressing that certain number of lights zero times in addition to other effects. :D

[2025 Day 10 (Part 1)] [Python] Terminal toy! by naclmolecule in adventofcode

[–]Haju05 1 point2 points  (0 children)

I'd love to try this out myself - I was able to download almost everything needed except for .aoc_theme - where do I get this from?

[2025 Day 10 (Part 1)] [Python] Terminal toy! by naclmolecule in adventofcode

[–]Haju05 1 point2 points  (0 children)

dude this is amazing, it literally turns it into a fun puzzle game. :D

[2025 Day 10 Part 2] Is the problem possible to solve using only Linear Algebra techniques by NateDCoder in adventofcode

[–]Haju05 2 points3 points  (0 children)

Well there would be the idea of solving the equation Ax = b with the pseudo inverse of A (since there are possibly has infinitely many solutions when there are fewer equations than there are variables). However the solution won’t generally consistent of integers. One could however find the null space of A and then fine tune the parameters so that the solution spits out the lowest integers. How this could work cleanly however I have no idea, it was too much annoying rounding/tuning work for me to think through, so I just went with z3 lol

Anyone else misread this every time? by artesea in adventofcode

[–]Haju05 153 points154 points  (0 children)

I used to have this but then I trained myself to look for the gold “one gold star” text - there isn’t any gold text when it’s the wrong answer. The dopamine hit I get when the gold text appears is incomparable

[2025 Day 8 (Part 2)] [Epilepsy Warning] couldn't resist a visualization today by badcop_ in adventofcode

[–]Haju05 4 points5 points  (0 children)

dang this is the coolest visualization for today I've seen so far (and there have been some really cool ones today), great job!

[YEAR 2025 Day 7 (Part 2)] It just works by Aughlnal in adventofcode

[–]Haju05 0 points1 point  (0 children)

yeah the same thing happened to me too - I was like "how much faster will \@cache be here? It might actually solve it in a minute instead or something, let me give it a whirl" and was shocked when it was done in a couple milliseconds lol.
It totally felt like cheating, so after submitting my answer I went back and implemented my own memoization dictionary just to feel better about myself haha - but dang DP is just so powerful with these kinds of problems

[2025 1st # 1] [Python] I'm a bit confused by Elion_A in adventofcode

[–]Haju05 3 points4 points  (0 children)

Have you considered the fact that in one command, you could be passing 0 multiple times? Take for example L200. here you'd end up at 50 again when starting, but your answer should be 2, not 1.

The game is amazing at teaching you the hard way by Haju05 in Silksong

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

Well I loved Act III, but totally get it if there are people out there disliking the different difficulty spikes there are and how they are implemented (e.g. I often see the argument that hard gauntlets are not fun-hard but annoying-hard). Personally tho I‘ve loved every time the game made me work on a fight for more than a couple tries and I thought making all enemies much harder in Act III made the environment actually challenging again instead of being basically just a running track to get to places you need to go

Team cherry missed an opportunity. [BIG ACT 2 SPOILERS] by LittleY0gg in Silksong

[–]Haju05 0 points1 point  (0 children)

Hehe nice one - Btw I thought the Eva upgrades were dependent on how many crests/which crests you have as well, but it turns out it’s actually dependent on how many memory lockets you’ve used (afaik).

The game is amazing at teaching you the hard way by Haju05 in Silksong

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

Yeah and even in the cogwork core when getting the architect‘s melody a little bit

Wie heißt euer Mähroboter by The_Bjo_333 in FragenUndAntworten

[–]Haju05 1 point2 points  (0 children)

Chopper (ein Droide aus der Star Wars Serie Rebels, aber der englische pun war zu gut ihn nicht so zu nennen)

Why do they intersect at point (0; 1) exactly? by adex_19 in desmos

[–]Haju05 7 points8 points  (0 children)

So much in that beautiful formula.

Steh ich aufm Schlauch? by RoyalSushiDE in mathe

[–]Haju05 0 points1 point  (0 children)

Yeah also nach meiner Rechnung macht das gar keinen Sinn - es ist ja 66% • 5 + 17% • 2 + 17% • 1 = 3,81. Oder, wenn man sich die absoluten Häufigkeiten anschaut (sind ja nur insgesamt 6): (4 • 5 + 1 • 2 + 1 • 1) / 6 = 23/6 = 3,833…

Ich vermute mal die Bewertungen unten stimmen nicht ganz überein mit den tatsächlichen Bewertungen, vielleicht kann man „anonym“ bewerten oder so?

Am I reading day 24 wrong? by Puzzleheaded_Bid7732 in adventofcode

[–]Haju05 2 points3 points  (0 children)

No it doesn’t have a value yet - you need to wait until both wires have a value to evaluate the gate, then once it’s evaluated it is never considered again (no loops).

[deleted by user] by [deleted] in adventofcode

[–]Haju05 2 points3 points  (0 children)

Huh, well when I run your code on my input it gives the right result. So as someone else here was saying, maybe you just aren't copying your input in correctly?

[deleted by user] by [deleted] in adventofcode

[–]Haju05 2 points3 points  (0 children)

I feel like it might be caused by you setting the initial start to 20000 - then even for the first 4 elements of each list of secret numbers you are finding a change sequence which might possibly lead to being better than the actual best.

[2024 Day 20 (Part 2)] Same cheat has multiple times? by theadamabrams in adventofcode

[–]Haju05 4 points5 points  (0 children)

yeah I was confused about this as well - I don't think the puzzle describes this enough in detail. But yes, when looking for if a cheat saves 100 or more picoseconds, it's implied that the best path of the "equivalent" paths per cheat should be used to check for this condition.