this post was submitted on 13 Nov 2023
5 points (85.7% liked)

Advent of Code

283 readers
1 users here now

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.

https://adventofcode.com

founded 1 year ago
MODERATORS
 

Does anyone have any goals they are hoping to achieve this year?

I'm planning to try and learn Raku but probably not use it as my primary solution language. I always prefer to do a secondary implementation in the new language so I'm not stuck on syntax and how to solve the problem.

As always my goal is to finish all the stars ✨🌟✨

top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 11 months ago (1 children)

Actually get further than the first week lol?

[–] [email protected] 2 points 11 months ago

That's a great one!!

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

I first started going through my solutions from last year because I was intrigued by the interesting new language Uiua (pronounced wee-wuh) which is described as a "general purpose, stack-based, array-oriented programming language with a focus on simplicity, beauty, and tacit code." (think APL meets FORTH!) But I soon realised that although I could solve some of the problems in Uiua, for others I don't think a day will be long enough!

So it will be back to Dart this year with the goal of having every solution runnable in DartPad in well under one second, and ideally without having to search for hints online. I made it to day 19 last year before I got stumped; you'll see more about that on Sunday!

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

Uiua sounds super interesting. I remember day 19 last year being very finicky.

I'm the same way I want to solve the problem and not have to also solve the problem of writing in a new language.

Here is my day 19 in clojure (not sure of that helps at all)

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

Thanks, I’m not that familiar with Clojure, but I can read it okay. How fast did that run for you? I tried it in an online Clojure editor and it took more than 10 seconds for me, which from memory is comparable with my solution before I started hacking in some terrible shortcuts…

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

Running on my computer part 1 takes ~850ms and part 2 takes ~1300ms

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

Haha, I bit the bullet and installed Clojure… and Calva… and Leiningrad… and eventually got it to run locally. Looks like it's quite slow via the REPL, but I get similar times to you when I run it with plain old "clojure -M”. That looks like a nice REPL though. I might pick through your code a bit more and see if I can improve my solution before Sunday!

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

If you are interested I wrote an AoC helper last year for clojure. https://github.com/jjcomer/aoc-helper

I started with the idea of using babashka for everything, but I ran into some namespace issues.

[–] [email protected] 2 points 11 months ago

That's probably going to be a bit much for me to get my head around any time soon, but it actually inspired me to complete the automation around my own solutions :-)