What could go wrong trying to solve AoC in Rust?

MaliciousKebab@sh.itjust.works to Programmer Humor@programming.dev – 65 points –

signal-2024-02-01-19-47-41-855

17

You are viewing a single comment

You can't really blame that on rust.

Yeah ngl it's very ugly. But hey as long as it works it's not stupid amirite?

Rust borrows a lot of it's design from functional programming languages like Haskell, which has its good and bad. You could also choose to implement this behavior iteratively like typical C programs, but that tends to be ugly in other ways.

Personally, I've grown fond of the functional style. You see it in other places too, like the higher order functions in JavaScript. What's good about them in Rust is you still get amazing performance due to zero-cost abstraction. Trying to implement it yourself would likely be slower, so use them any chance you get.