Adventofcode Alternatives
Similar projects and alternatives to adventofcode
-
adventofcode
My solutions to the Advent of Code challenges (by djotaku)
-
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
-
Advent-of-Code-2021
Did somebody say Shakespeare Programming Language? (by SansCipher)
-
-
advent_of_code
Solutions to programming puzzles on Advent of Code (by Praful)
-
-
-
Onboard AI
Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
-
-
-
-
advent-of-code
i know how to code now! here's my advent of code solutions that i can be somewhat proud of (by SansPapyrus683)
-
-
-
adventofcode
Advent of Code solutions of 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 and 2023 in Scala (by sim642)
-
-
-
-
advent-of-code
My Advent of Code solutions through the years - mostly JS (by davidsharp)
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
adventofcode reviews and mentions
-
-🎄- 2021 Day 2 Solutions -🎄-
Python 3 - Minimal readable solution for both parts [GitHub] import fileinput aim, h, d = 0, 0, 0 for l in fileinput.input(): cmd, x = l.strip().split(" ") x = int(x) if cmd == "down": aim += x elif cmd == "up": aim -= x else: h += x; d += aim * x # cmd == "forward" print(h * aim) print(h * d)
-
-🎄- 2021 Day 1 Solutions -🎄-
Python 3 - Minimal readable solution for both parts [GitHub]
Stats
The primary programming language of adventofcode is Python.