Advent-of-code VS AdventOfCodeHaskell

Compare Advent-of-code vs AdventOfCodeHaskell and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
Advent-of-code AdventOfCodeHaskell
10 13
4 0
- -
6.0 10.0
about 1 month ago over 1 year ago
Haskell Haskell
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Advent-of-code

Posts with mentions or reviews of Advent-of-code. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-09.
  • Advent of Code 2022 day 10
    11 projects | /r/haskell | 9 Dec 2022
    https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/Day10.hs Today is very verbose, but I wanted to use Lenses and State again. Went pretty ok all in all. The only thing I got wrong in the beginning was the ticking, this probably lead to some repeated code that I could have avoided if I understood the assignment right away.
  • Advent of Code 2022 day 9
    12 projects | /r/haskell | 8 Dec 2022
    Technically today should have been fun, but I just didn't see that signum will solve everything... then my snake was one point to short and I didn't notice... All in all pretty messy but I was able to clean it up: https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/Day09.hs Finally used State though!
  • Advent of Code 2022 day 8
    8 projects | /r/haskell | 7 Dec 2022
    https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/Day08.hs I parsed the grid as Map (V2 Int) Int and padded the grid with values of -1. I then used unfoldr with Map.lookup to get all 4 ways for a specific tree. In part A I simply filtered all trees out where the given predicate wasn't fulfilled. In part B I used a modified takeWhile function to take all trees which are smaller + one more than the current tree. I also had to get rid of the -1.
  • Advent of Code 2022 day 7
    7 projects | /r/haskell | 6 Dec 2022
    I should have planned more in the beginning, but it turned out fine. I abused Parsecs internal state to give every file the full name: https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/Day07.hs
  • How do I structure my files to comfortably work on the advent of code challenges?
    9 projects | /r/haskell | 6 Dec 2022
  • Advent of Code 2022 day 6
    9 projects | /r/haskell | 5 Dec 2022
    Today was simple, for part a I initially used `zipWith4` and sets but that wasn't an option for part b, so I rewrote how the sets were created. https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/Day06.hs
  • Advent of Code 2022 day 5
    5 projects | /r/haskell | 4 Dec 2022
  • Advent of Code 2022 day 4
    7 projects | /r/haskell | 3 Dec 2022
    After last years bingo I thought this is going to be tougher...: My solution
  • Advent of Code 2022 day 1
    9 projects | /r/haskell | 1 Dec 2022
    https://github.com/0xmycf/Advent-of-code/blob/main/2022/aoc22/src/Days/DayOne.hsI learned Haskell with last years AoC and it was quite a mess... This year is up to a much much better start. Lets see how this year will go :)

AdventOfCodeHaskell

Posts with mentions or reviews of AdventOfCodeHaskell. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-24.
  • -🎄- 2022 Day 25 Solutions -🎄-
    63 projects | /r/adventofcode | 24 Dec 2022
    Haskell. I love balanced base systems! Was just telling my less-math inclined partner about them a bit ago :)
  • -🎄- 2022 Day 13 Solutions -🎄-
    149 projects | /r/adventofcode | 12 Dec 2022
    Haskell. Implementing nested lists is fun! The parser was surprisingly straightforward (except for an issue where it was expecting an extra newline at the end of my input), and the bulk of the problem was handled by implementing Ord instances for my data types.
  • -🎄- 2022 Day 12 Solutions -🎄-
    146 projects | /r/adventofcode | 11 Dec 2022
    Haskell. Recursive BFS in the State monad! Visited positions are marked with a '|' character, since this is 'z' + 2. My part 1 code didn't need too much modification for part 2, I only needed to account for the fact that adjacent 'a's can visit each other on the first step.
  • Advent of Code 2022 day 12
    10 projects | /r/haskell | 11 Dec 2022
    Code. Recursive BFS using the State monad to update grid positions
  • -🎄- 2022 Day 10 Solutions -🎄-
    201 projects | /r/adventofcode | 9 Dec 2022
    Haskell. Both parts are one liners, I add a no op before every addx to avoid skipping cycles, and using a 2D point data type (that I custom implemented based on Linear.V2 for named fields) makes handling the data a breeze!
  • [2022 Day 9] Shortest rope with fixed tail
    1 project | /r/adventofcode | 9 Dec 2022
    346 for me. would've loved this as a part 3, since my solution adapts to it really well!
  • Did anyone else build a full tree for day 7?
    2 projects | /r/adventofcode | 9 Dec 2022
    Something that really helped me out was finding a Tree Zipper library! This one doesn't have the best documentation but it was the only one that wanted to compile in my project lol. It does a lot of the heavy lifting of traversing the tree for you, once you figure out how to use it of course. Here's my not very cleaned up code if you wanna see what I did
  • -🎄- 2022 Day 9 Solutions -🎄-
    195 projects | /r/adventofcode | 8 Dec 2022
    Haskell. My idea for part 1 was basically "Find all the places the head goes, then follow it with the tail" which ended up working basically for free in part 2, and I chose the lazy implementation of "just compose these functions together manually, its what the language was built for". Definitely going to refactor that part in the morning lol
  • Advent of Code 2022 day 9
    12 projects | /r/haskell | 8 Dec 2022
    Pretty happy with my code, which amounts to a bunch of composed scanls, my part 1 solution gave me part 2 for free! Code
  • Advent of Code 2022 day 8
    8 projects | /r/haskell | 7 Dec 2022
    Code for the day, with parsing and extra utilities located in src/Util/

What are some alternatives?

When comparing Advent-of-code and AdventOfCodeHaskell you can also consider the following projects:

aoc2022

advent-of-code-2022

aoc2022

aoc2022

advent2022 - Advent of Code 2022

aoc2022

Advent2022 - Advent Of Code 2022

advent-of-code - Advent of Code solutions

advent-of-code-dev-2021 - Interactive development environment and runner for Advent of Code challenges

aoc2022 - Advent of Code 2022 - my answers