advent-of-code VS Advent_of_Code

Compare advent-of-code vs Advent_of_Code and see what are their differences.

advent-of-code

Advent of code solutions (by EmilOhlsson)

Advent_of_Code

My Advent of Code solutions. (by Farbfetzen)
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 Advent_of_Code
6 14
2 7
- -
4.8 3.7
5 months ago 7 months ago
Rust Python
- MIT License
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-06.
  • [2022 Day 12][Lua] Solver implemented as neovim plugin, with colorized heightmap
    1 project | /r/adventofcode | 12 Dec 2022
    Plugin can be found here
  • -🎄- 2022 Day 7 Solutions -🎄-
    248 projects | /r/adventofcode | 6 Dec 2022
    This Lua code is run by loading the solver as a plugin, and then open the input file in neovim and run :AoC 2022 07 1. Haven't really befriended Lua yet though https://github.com/EmilOhlsson/advent-of-code/blob/main/lua/advent-of-code/2022/07.lua
  • -🎄- 2021 Day 5 Solutions -🎄-
    220 projects | /r/adventofcode | 4 Dec 2021
    Created a specific iterator for the ranges, that made the code quite nice. rust fn solve_p1(input: &str) -> usize { let mut lines = HashMap::<(i32, i32), u32>::new(); for ((x1, y1), (x2, y2)) in parse(input) { if x1 == x2 || y1 == y2 { let steps = cmp::max((x2 - x1).abs(), (y2 - y1).abs()) + 1; let xs = Range::new(x1, x2, steps); let ys = Range::new(y1, y2, steps); for p in xs.zip(ys) { let point = lines.entry(p).or_insert(0); *point += 1; } } } lines.values().filter(|&c| *c >= 2).count() } Full code is here
  • -🎄- 2021 Day 3 Solutions -🎄-
    230 projects | /r/adventofcode | 2 Dec 2021
    Full code is available here
  • -🎄- 2021 Day 2 Solutions -🎄-
    250 projects | /r/adventofcode | 1 Dec 2021
    (define (solve-part2 input) (let next ([depth 0] [distance 0] [aim 0] [input input]) (if (null? input) (* distance depth) (let ([instr (caar input)] [amount (string->number (cadar input))]) (cond [(equal? "forward" instr) (next (+ depth (* aim amount)) (+ distance amount) aim (cdr input))] [(equal? "down" instr) (next depth distance (+ aim amount) (cdr input))] [(equal? "up" instr) (next depth distance (- aim amount) (cdr input))]))))) ``` Full code is here
  • -🎄- 2021 Day 1 Solutions -🎄-
    252 projects | /r/adventofcode | 30 Nov 2021
    (define (solve-part2 input) (let [(filtered (map (λ (l) (apply + l)) (windows 3 input)))] (apply + (map bool->number (map (λ (ab) (apply < ab)) (windows 2 filtered)))))) `` Wherewindows` is defined in a helper library. Full code is here

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 2021-12-23.

What are some alternatives?

When comparing advent-of-code and Advent_of_Code you can also consider the following projects:

AdventOfCode2021.jl - Advent of Code 2021 in Julia

advent-of-code-2021 - 🎄 My Advent of Code solutions in Rust. http://adventofcode.com/2021

advent-of-code - Advent of Code puzzles

advent-2021-kotlin - :christmas_tree: Advent of Code 2021: Solutions in Kotlin

advent_of_code - Solutions to programming puzzles on Advent of Code

advent-of-code-2021

adventofcode - Solutions for problems from AdventOfCode.com

aoc-2021-rust

aoc2021 - Advent of Code 2021 on my homemade 16-bit CPU SCAMP

advent-of-rust-2021 - Solutions to Advent of Code 2021 in Rust

aoc2021 - Solutions for Advent of Code 2021

specter - Clojure(Script)'s missing piece