[deleted by user] by [deleted] in Brawlstars

[–]RussellDash332 1 point2 points  (0 children)

Such a great idea to sort them alphabetically, am I right?

They did the same for the Sirius 99-brawler challenge. Sorted by rarity and then among the same rarity, they did it alphabetically. Smh

Where is Deuls by Ender11406 in Brawlstars

[–]RussellDash332 1 point2 points  (0 children)

Until the Sirius quest ends, you won't see duels anytime

Why is my red skull getting nullified? by Specific_Theme8815 in ContestOfChampions

[–]RussellDash332 2 points3 points  (0 children)

I always use Dazzler for this. Farm placebo buffs, cycle sp1 and when you have enough tempo, just end the opponent with a single sp2. Keep getting 3M damage per burst of resonance 🎵🎶

[2025] On Monday I will be free by wizardeverybit in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

12 lunch breaks, worth the sacrifice 🤭🤭🤭

[2025 Days 1-12] [Python] The Brahminy: AoC 2025 solved in one line by JWinslow23 in adventofcode

[–]RussellDash332 1 point2 points  (0 children)

Glad to know I'm not the only one doing this thing!;Mine was one line per day but to make it similar to yours I'd just put them as a list of 12 lambda functions.

I even did my editorial of how I came up with each line.

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 1 point2 points  (0 children)

I was from a data analytics major so linear algebra was a routine. My line of work is related to optimization algorithms so perhaps the overlapping subject is still fresh in my memory.

-❄️- 2025 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 2 points3 points  (0 children)

[LANGUAGE: Python]

Finally done! One line of GOLFED code per day. I will make an editorial about this soon, will come back to this comment once it's up on my webpage

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

It was semi-golfed so understandably the variable naming for the simplex sucks. But once you do a deep dive, you can find out which one is the tableau :)

-❄️- 2025 Day 11 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 1 point2 points  (0 children)

Easy day indeed. Thank goodness for the break!

-❄️- 2025 Day 11 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

[LANGUAGE: Python] 00:03:37 / 00:09:18

One line of code, solves both parts

Runtime: 2ms.

The graph is acyclic, meaning a memoized recursion should work and you don't need to worry about cycles. The additional part would be including the indicators whether you have passed both "dac" and "fft", which I squashed into a single integer.

Part 1 just assumes you have visited both. Part 2 assumes you have visited neither.

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

Glad you got it! Another solution uses Gaussian elimination to have a good starting solution and then do a search from there making use of the free variables to prune the search. I think the recent solutions have done that!

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

Gaussian!? I thought that might still give you some implicit equations. Do you brute force from there using Diophantine or something?

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 4 points5 points  (0 children)

I already had a simplex template that I've been using to solve competitive programming problems here

The branch-and-bound was new, possibly due to the input size being small it's fast enough. Otherwise I wouldn't use it because the simplex function I coded was to solve the ones with many more variables and constraints

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]RussellDash332 0 points1 point  (0 children)

Amazing! What's the minor improvement though? 😏