21
๐ฆ - 2023 DAY 9 SOLUTIONS -๐ฆ
(programming.dev)
An unofficial home for the advent of code community on programming.dev!
Advent of Code is an annual Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like.
Solution Threads
M | T | W | T | F | S | S |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 |
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
console.log('Hello World')
Rank 148!! Even beat Leo Uino today!
Optimized: https://codeberg.org/Sekoia/adventofcode/src/branch/main/src/y2023/day9.rs
Less optimized, though not quite my initial version: https://codeberg.org/Sekoia/adventofcode/commit/72dfd77b92518aefd9dbe3e661885528f737f861
how in the world are you getting top 1k with rust? sheesh!
parser!(lines(repeat_sep(i64, " ")))
Today was pretty ideal for my setup. In general I think Rust is really good for later days, because the safety and explicitness make small mistakes rarer (like if you get an element from a HashMap that doesn't exist, you don't get a None later down the road (unless you want it, in which case it's explicit), you get an exception where it happened.
I just really like Rust :3
I guess I'll have to take rustaceans who claim they're more productive in rust than python seriously now