this post was submitted on 01 Dec 2023
17 points (100.0% liked)

NotAwfulTech

357 readers
1 users here now

a community for posting cool tech news you don’t want to sneer at

non-awfulness of tech is not required or else we wouldn’t have any posts

founded 1 year ago
MODERATORS
 

Rules: no spoilers.

The other rules are made up as we go along.

Share code by link to a forge, home page, pastebin (Eric Wastl has one here) or code section in a comment.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 10 months ago (1 children)

a,b, not much to sayThe hardest part has finding the right dart ascii library to use (by default dart treats everything as UTF-16, which is horrible for this sort of thing) and the right data structure (linked hash map, which is a map that remembers insertion order.)

[–] [email protected] 4 points 10 months ago (1 children)

spoiler

"you have linked hash maps? LUXURY!"

In my code I had to resort to this sorting

for my $lens ( sort { $Boxes->[$idx]{$a}{pos} <=> $Boxes->[$idx]{$b}{pos} }  keys %{ $Boxes->[$idx] } )

Perl at its best!

[–] [email protected] 2 points 10 months ago (1 children)

I am so mad that I don’t know Perl, honestly.

[–] [email protected] 3 points 10 months ago

It's a nice language! And I believe it's what AoC is made in. Certainly a lot of stuff seems tailor-made for the language.