Advent of Code 2019 - leaderboard 43100-84040706 - Haskell

Welcome to the Functional Programming Zulip Chat Archive. You can join the chat here.

Gabriel Lebec

Posted in Slack, but maybe people here are also doing AOC this year? My solutions (spoilers!) will be at https://github.com/glebec/advent-of-code-2019.

Advent of Code 2019 Solutions in Haskell. Contribute to glebec/advent-of-code-2019 development by creating an account on GitHub.
Gabriel Lebec

Posted leaderboard from Slack (43100-84040706) as this topic's subject.

Jack Henahan

Advent of Code is a set of programming puzzles. It's quite fun

Sridhar Ratnakumar

/me participates (too late?)

Sridhar Ratnakumar

Mine, nix based and shebang self-contained scripts :-D https://github.com/srid/aoc2019

Contribute to srid/aoc2019 development by creating an account on GitHub.
Jack Henahan

Oh, that's a neat idea. Maybe I'll do that this year

Sridhar Ratnakumar

Everything is self-contained. It should "just work" if you clone the repo and run, say ./02.hs.(need to install Nix itself first, of course)

Sridhar Ratnakumar

And that doesn't just run it, but brings up "ghcid" which is sort of like a command line IDE, showing compile errors, and recompiling on file change, in addition to running the main function.

Sridhar Ratnakumar

I suppose if I add tmux/vim, it can truly be considered a command line IDE that is launched as a self-contained script

Jack Henahan

https://github.com/jhenahan/adventofcode2019/blob/master/src/Day1.hs

Contribute to jhenahan/adventofcode2019 development by creating an account on GitHub.
Jack Henahan

Looking into something more self-contained, and may finally get around to writing a parser-solver-printer framework so I can factor all that boring logic out

Sridhar Ratnakumar

I have never done AOC before. Will there be more parsing involved as the days go by?

Bolt

it depends on the year mostly, but every problem can be seen as having minimum parsing machinery

Sandy Maguire

oh my god. is it time for AOC again? jesus this has been a fast year

Sridhar Ratnakumar

is AoC going to be like ICPC problems as christmas approaches?

Sridhar Ratnakumar

I kind of wish it did. Would be more fun. :-D

Jack Henahan

https://github.com/jhenahan/adventofcode2019/blob/master/src/Day2.hs

Contribute to jhenahan/adventofcode2019 development by creating an account on GitHub.
Jack Henahan

Lagging behind, but trying to catch up soon.