aoc22 VS AoC

Compare aoc22 vs AoC and see what are their differences.

aoc22

Solutions for Advent of Code 2022 in Rust (by morlinbrot)

AoC

my personal repo for the advent of code yearly challenge (by Fadi88)
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
aoc22 AoC
3 87
0 18
- -
10.0 8.1
over 1 year ago 6 days ago
Rust Python
- GNU General Public License v3.0 or later
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.

aoc22

Posts with mentions or reviews of aoc22. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-11.
  • -🎄- 2022 Day 12 Solutions -🎄-
    146 projects | /r/adventofcode | 11 Dec 2022
    Here's just the interesting bit, full solution here. ``` fn dijkstra(unvisited: &mut Unvisited, start: Pos, end: Pos) -> Option { fn update_neighbor(unvisited: &mut Unvisited, cur: &Node, pos: Pos) { if let Some(neigh) = unvisited.get_mut(&(pos)) { // Steepness check. if neigh.val <= cur.val + 1 { neigh.dist = neigh.dist.min(cur.dist + 1.); } } }
  • -🎄- 2022 Day 9 Solutions -🎄-
    195 projects | /r/adventofcode | 8 Dec 2022
    Tiny little thing you could do to make this even more succinct: Use `abs()` on `dx` and `dy`, that's what I did!
  • -🎄- 2022 Day 5 Solutions -🎄-
    263 projects | /r/adventofcode | 4 Dec 2022
    HashMap for parsing stacks and Vec> for operations. Full code here.

AoC

Posts with mentions or reviews of AoC. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-10.

What are some alternatives?

When comparing aoc22 and AoC you can also consider the following projects:

Advent-of-Code

advent-of-code - My solutions for Advent of Code

aoc - Advent of Code

adventofcode - Solutions for problems from AdventOfCode.com

advent_of_code_2022 - Advent of code 2022

aoc2020 - Advent of Code 2020 - my answers

AdventOfCode-Java - adventOfCode(Language.JAVA);

advent-of-code-go - All 8 years of adventofcode.com solutions in Go/Golang; 2015 2016 2017 2018 2019 2020 2021 2022

aoc2021 - Advent of Code 2021 Solutions

adventofcode - Advent of Code solutions of 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 and 2023 in Scala

Advent-of-code-2021-golang - Advent of code 2021 Go solutions

aoc2021 - Advent of Code 2021 - my answers