-🎄- 2022 Day 2 Solutions -🎄-

This page summarizes the projects mentioned and recommended in the original post on /r/adventofcode

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • AoC

    my personal repo for the advent of code yearly challenge (by Fadi88)

    python3 a bit slow for my taste, but I am proud of my solution I had a few shortcuts 1- there are only 9 cases repeating so no need to calculate each, just do it for each kind then multiply by their frequency 2- no lookup tables used, think ASCII if we shift second hand from 'X' and first hand from 'A' if second is leading, it is a win; if second is lagging, it is a loss; if they are in sync, it is a tie https://github.com/Fadi88/AoC/blob/master/2022/day02/code.py Is the code complex to follow ? Any hints on how to make it look simpler are appreciated also porting to rust later and posting that as well

  • AoC2022

    Nice one. Way cooler than my half-assed hardcoded solution

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • advent-of-code-next

    NextJS Project for Advent of Code

    Thanks! Feel free to watch my Github Repo if you want to be notified ;-)

  • aoc2022

    I'm trying to optimize mine, you might find it interesting

  • adventofcode

    Here's my JavaScript solution: https://github.com/Topener/adventofcode/blob/2022/day2/program.js.

  • advent-of-code-2022

    https://adventofcode.com/2022/ (by qqii)

    I used lookup tables in the same was as mentioned in day 03, and I wonder if converting the switch to an inline table would be easier to read:

  • AdventOfCode

    My Advent of Code solutions. I also upload videos of my solves: https://www.youtube.com/channel/UCuWLIm0l4sDpEe28t41WITA

    Python3, 22/11. Video. Code.

  • 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.

  • Advent-Of-Code-2022

    Solutions to Advent Of Code 2022 in Rust. (by C2thehris)

    github

  • aoc-2022

    https://adventofcode.com/2022 (by Amar1729)

    Python 849/1095

  • AdventOfCode

  • advent-of-code

    :christmas_tree: (by hughcoleman)

    Indeed, I'd love to see what others have come up with. My cleaned-up version certainly isn't any more elegant...

  • Fruitcake

    Advent of Code: 2022. In Rust.

  • AoC

    Advents of Code in NASM x86_64 assembly (by JustinHuPrime)

    Both part 1 and part 2 were solved using lookup tables - get the two characters representing the first and second columns of the table, and convert them into a number between one and three. Finally, using the power of x86 scale-index-displacement-base addressing, I could get the right byte in the lookup table holding my score. A little assembly optimization was used to remove unnecessary casts (e.g. movzx rax, al isn't necessary if you know for certain that the upper seven bytes of rax are zeroed out already). Part 2 didn't even require any code changes, just changes to the lookup table! Adapting the lookup table for part 2 was actually quite easy - with the way I wrote the table, I could pretty easily sort the table so that the losing, drawing, and winning combinations were in the right order.

  • AdventOfCodeCSharp

    My AoC Solutions

    Like this

  • advent-of-code-2022

    Language: Python3 Part 1: https://github.com/wmt1276/advent-of-code-2022/blob/main/2a.py Part 2: https://github.com/wmt1276/advent-of-code-2022/blob/main/2b.py GitHub Copilot is good at writing RPS functions. GitHub Copilot is bad at writing any of the other functions one needs.

  • advent_of_code

    Advent of Code (by zv0n)

  • aoc-excel-2022

    A collection of my excel solutions for Advent of Code 2022

    Solutions are on github here

  • advent_of_code

    Advent of Code (by muscovite)

    Heh, I did basically the same thing in Rust

  • AdventOfCode-Java

    adventOfCode(Language.JAVA);

    See it on GitHub: https://github.com/SimonBaars/AdventOfCode-Java

  • aoc2022

    🎄 (by jenarvaezg)

  • advent-of-code-2022

  • adventOfCode2022

    Discontinued Javascript Solutions for Advent Of Code 2022 (by agardes)

    Javascript solution

  • adventofcode2022

    OCaml

  • Advent-of-code

    My solutions of adventofcode.com (by MichalMarsalek)

  • Advent-of-Code-Solutions

    JavaScript

  • advent-of-code

    Advent of Code solutions (by golfrumors)

  • aoc_2022

  • aoc2022

    Advent of Code 2022 on SCAMP (by jes)

  • Lisp https://gitlab.com/Elmosfire/aoc2022lisp/-/blob/main/day2.lisp

  • advent-of-code

    Solutions to Advent of Code challenges. (by 8483)

  • My second-ever Go program: https://github.com/wjholden/Advent-of-Code-2022/blob/main/02/02.go

  • aoc2022

  • aoc-rust

    Solutions for Advent of Code puzzles, written in Rust

    Full code here (GitHub).

  • AOC-2022

  • advent-2022

    https://adventofcode.com/2022 (by tudorpavel)

    I'm learning Golang this year! https://github.com/tudorpavel/advent-2022/blob/master/day02/main.go

  • aoc22

    Advent of Code 2022 (by quandrum)

    I don't know why I do these things: https://github.com/quandrum/aoc22/blob/main/lib/advent_of_code/day_02.ex

  • advent-of-code

    Advent of Code solutions in JS (by leyanlo)

  • AOC

    C https://github.com/Kwaitv/AOC/blob/main/2022/2day/day2.c

  • advent-of-code-2022

    Advent of code solutions for 2022 (by ryvoxr)

    Rust

  • advent-of-code-2022

    Program synthesis / metaprogramming solutions to AOC 2022 (by nathanbabcock)

    Program synthesis / metaprogramming in Typescript

  • AdventOfCodeTI83

    As many Advent of Code problems as possible, done in Z80 assembly language for the TI83 graphing calculator.

    Z80 Assembly for TI-83

  • aoc

    Advent of Code (by ramuuns)

  • AdventOfCode

    My solutions to Advent of Code (by DanaL)

    My solution for today

  • aoc2022

    ngn/k (by chrispsn)

    ngn/k (my repo).

  • AdventOfCode2022

    My solutions for the Advent of Code 2022 challenges (by SizableShrimp)

    I did the puzzle in Java with a jumble of if expressions like other people here. I then took it upon myself to turn both parts into (effectively) one-liners per part using the power of MATH. Have my code

  • adventofcode

    Advent of Code solutions of 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 and 2023 in Scala (by sim642)

    My Scala solution.

  • aoc2022

    Python: code here

  • MonkeyAOC

    Code: Repo, Today's solution

  • aoc

    I have a chunky solution for day02 in python. https://github.com/colonwq/aoc-2022/tree/master/day02

  • adventofcode

    :christmas_tree: Advent of Code (2015-2023) in C# (by encse)

  • AdventOfCode

    :christmas_tree: My Advent Of Code solutions (by marvinborner)

  • aoc2022

    Discontinued Advent of Code 2022 solutions [Moved to: https://github.com/deafpolygon/advent-of-code] (by deafpolygon)

  • advent-of-code

    My advent of code solutions (by ailac22)

  • aoc2022apl

    Advent of Code 2022 solutions in Dyalog APL

    Dyalog APL A B C←X Y Z←0 1 2 p←↑⍎¨⊃⎕NGET'p2.txt'1 +/(1+⊢/p)+3×3|1--/p ⍝ part 1 +/(3×⊢/p)+1+3|2++/p ⍝ part 2

  • advent

    Advent of Code solutions for Node (by rjwut)

    JavaScript

  • aoc2022

    Advent of Code 2022 - my answers

  • advent-of-code-2022

    🎄 My solutions to Advent of Code 2022. (by v-shenoy)

    Rust: Day 02

  • advent-of-code-2022

    🎅🌟❄️☃️🎄🎁 (by mstksg)

    A (modular) algebra based solution in Haskell, but I frame no hypothesis :) I just played around with random equations until it worked. All of my solutions for 2022

  • Advent-of-Code

    A collection of my solutions for "Advent of Code" (by Nuhser)

  • advent-of-code-2022

  • advent-of-code-julia

    Julia using modular arithmetic

  • aoc-2022

    My solutions in Rust for Advent of Code 2022 (by jasonincanada)

    Uneventful Rust solution for day 2: https://github.com/jasonincanada/aoc-2022/blob/main/day_02/src/main.rs

  • advent-of-code

    Noah's Advent of Code solutions (by noahtallen)

    Very non-clever implementation with a lot of enums... maybe one layer too many of enums :)

  • AdventOfCode-2022

    Discontinued Advent of Code 2022 solutions. Enjoy :-)

    Source Code | Video Explanation

  • AoC2022

    adventofcode.com (by Ily3s)

    C

  • AoC2022

    Swift solutions for Advent of Code 2022 (by gereons)

    Swift repo using enums and switch

  • AoC-2022

    Solutions to Advent Of Code problems (by zeapsu)

    Part 1 | Part 2

  • Play2022

    Neil Banman's Advent of Code submissions.

    My submission code had the dubious distinction of working on the first try, but it was a tangled nightmare of when statements and bad ideas kludged on top of other bad ideas.

  • advent-of-code

  • aoc-2022-kotlin

    AOC 2022 in Kotlin!

  • advent-of-code-2022

    back to rust, except i'll use libs where it makes sense (by jchevertonwynne)

  • advent_of_code_2022

    Advent of code 2022 (by HendrikPetertje)

  • advent-of-code

    My personal advent of code repo (by soupglasses)

  • Advent-of-Code-2022

    AoC2022 solutions in Rust 🦀 (by jaimeliew1)

  • Advent-of-Code-2022

    Advent of Code 2022 - in Rust! (by Killavus)

  • Advent-of-Code

    Repository with all Advent of Code's advents. (by AdelFetner)

    Did this one in JavaScript grabbing the element from the DOM and method chained it to make it usable, full repo is here: https://github.com/AdelFetner/Advent-of-Code

  • advent-of-code-2022

    Parsing using DCGs, outcomes encoded as rules: https://github.com/aarroyoc/advent-of-code-2022/blob/main/day2/main.pl

  • aoc22

    Golang p1 & p2 https://github.com/tmslammi/aoc22/blob/master/2022/day02/main.go

  • Advent-of-Code

    Solutions

  • AdventOfCode2022

    part1 part2

  • puzzles

    \,,,/ (by spyroid)

  • adventofcode

    Java

  • advent-2022

    Advent of code 2022 in Novah (by stackoverflow)

  • advent-of-code-2022

    Solutions for Advent of Code 2022, written in JavaScript using node.js (by johnbeech)

    My over-engineered Node JS solution for day 2 parts 1 and 2: - https://github.com/johnbeech/advent-of-code-2022/blob/main/solutions/day2/solution.js

  • advent_of_code_2022

    Doing Advent of Code 2022 in Java (by Marwwin)

    Day2

  • AdventOfCode

    Discontinued My adventofcode.com solutions [Moved to: https://github.com/d-hain/advent_of_code] (by d-hain)

  • aoc-2022

    2022 Advent of Code in Clojure 🎄 (by giacomocavalieri)

    Here's the code

  • Full writeup on my blog, and code on Gitlab.

  • adventofcode

    Advent of code solutions (by mathsaey)

  • advent-of-code-2022

    Solutions for https://adventofcode.com/2022 (by vgnh)

  • my solution: https://github.com/jossbnd/advent_of_code_2022/blob/main/dec02/dec02.go

  • advent-of-code-2022

    The 2022 adventofcode.com JavaScript solutions I've written for the YouTube videos (https://www.youtube.com/@thibpat) (by tpatel)

  • aoc

    My solutions to the https://adventofcode.com/ (by vollcheck)

    nothing special but it just works

  • Advent-of-code-2022-golang

    2022 golang solutions of Advent Of Code

  • aoc-go

    A Golang tool for generating code for Advent of Code

  • advent-of-code-2022

    The cleanest solution in JS, change my mind: My index.js

  • AdventOfCode2022

    Python 3.11 caveman brain solution

  • aoc2022

    Minecraft functions Repo : https://github.com/MrPingouinMC/aoc2022/tree/main/sol/day2

  • advent-of-code-tribbe

    My solutions for Advent of Code.

    My Python solution: https://github.com/tomribbens/advent-of-code-tribbe/blob/master/aoc_tribbe/aoc2022/d02.py

  • aoc

    Advent of Code - mscha's Perl 6 solutions (by mscha)

  • adventofcode

    Damn, and I thought I was smart. https://github.com/widforss/adventofcode/blob/master/examples/2022/2/main.py

  • advent-of-code

  • aoc2022

    My submissions to Advent of Code 2022. Learning Julia for the first time. (by hraftery)

    My second day with Julia. I'm learning a lot from other Juliarians, so hopefully my naive fresh take is always somehow interesting!

  • advent-of-code-solved

    My advent of code, in jq…

    Been using jq for a few years for the AoC, so here's day 2 (probably a bit verbose):

  • AOC2022

    I’m a beginner and noob in Python. Both part 1 and 2 solutions here: https://github.com/hrtowii/AOC2022/blob/master/day2.py

  • AdventOfCode

    My solutions to Adventofcode (by sergiosgc)

    Repo at github, tweet here.

  • Advent-Of-Code

    Solution: https://github.com/tymscar/Advent-Of-Code/tree/master/2022/typescript/day02

  • AoC

    Advent of Code (by Marterich)

  • aoc-2022

  • AdventOfCode2022

  • advent-of-code

    solutions for Advent of Code (by micod-liron)

  • aoc2022

    Typescript template in Node.js for Advent of Code event (by nesvand)

    Part 1

  • advent-of-code

    My solutions to the Advent of Code (by aaronreidsmith)

    Scala. A little more verbose than I would like, but it works ¯\_(ツ)_/¯

  • AdventOfCode2022

    GitHub: https://github.com/jcollard/AdventOfCode2022/tree/main/Day2-RPS

  • advent-of-code

    Advent of Code puzzles (by KT421)

  • advent_of_code_2022

    Rust: https://github.com/Scharrels/advent_of_code_2022/blob/master/src/day2_rock_paper_scissors.rs

  • aoc-elixir-2022

    Advent of Code 2022 - Elixir

  • aoc_2022

    Why yes, we can.https://github.com/herites/aoc_2022/tree/main/day2

  • aoc

    advent of code (by apparentorder)

  • AoK

    Advent of Code in K

    I feel pretty good about my ngn/k solution: https://github.com/gitonthescene/AoK/blob/main/2022/day2.k

  • advent-of-code-2022

    Advent of Code 2022 (by bozdoz)

    Go! https://github.com/bozdoz/advent-of-code-2022/tree/main/02

  • advent-of-code-2022

    Typescript solution: https://github.com/xhuberdeau/advent-of-code-2022/tree/main/src/day-2

  • Advent_of_code_r

    solutions to the advent of code in R

    this is really neat, I went off trying to make it scalable for more symbols, but part two never happened... https://github.com/plukethep/Advent_of_code_r/blob/main/2022/day2.R

  • advent-of-code

    Trying to solve https://adventofcode.com/ (by ThePituLegend)

    Python3 solution!

  • advent-of-code

    Personal Advent of Code puzzle solutions (by willybrauner)

  • AoC2022

    not again (by Perska)

    C# https://github.com/Perska/AoC2022/blob/master/AoC2022/Days/Day02.cs

  • adventofcode

    Solutions for Advent of Code (by tipa16384)

    link to github

  • AdventOfCode22

    Discontinued https://adventofcode.com/2022/ (by scorixear)

    C# Github Repo Day 2 - Puzzle 2

  • advent-of-code-2022

    Advent Of Code (by VossFynn)

  • advent-of-code

    code

  • Extremely overengineered and with testing library: GitHub

  • AdventOfNim

    My Advent of Code solutions written in Nim

    This is my solution in Nim: Github

  • AdventOfCode

    Sharing Advent of Code Exercises (by shouchen)

    Fun with math (C++ enums) https://github.com/shouchen/AdventOfCode/blob/master/aoc2022/Day2/Day2.cpp

  • aoc-2022

  • AdventOfCode2022

    My solutions to Advent of Code 2022 (by willkill07)

    My C++ Solution

  • 2022-AoC

    Wherein I pretend I learned anythign at all about programming int he last year (by blairfrandeen)

    My solution in Rust

  • advent-of-code-2022

    My solutions to Advent of Code 2022 (by warriordog)

    C# - [Part 1] [Part 2]

  • aoc2022

    Advent of Code, 2022 edition ⭐ (by kwentine)

    Python, using modular arithmetic on ordinals. Idea behind the score formulas: if you place "Rock, Paper, Scissors" on a circle, the winning match is one step counterclockwise...or two steps clockwise.

  • advent_of_code_2022

    Discontinued Advent of code 2022 with Julia (by bsadia)

    My Pluto notebook is here.

  • aoc-2022

    My solutions for Advent of Code 2022; First year participating, learning rust in the process (by dawsynth)

    first year participating, my solution written in rust

  • advent-of-code-2022

    Rust

  • advent2022

    Attempts at Advent of Code 2022 problems (by chwilk)

    I'm pretty happy with my Rust solution for this one.

  • Advent-of-Code

    Swift, using some helpers for `CaseIterable`.

  • Advent2022

    Done in C#, written as a service with this model to simulate each round.

  • AOC2022

    Advent of Code 2022, solved in Haskell (by MatthiasCoppens)

    Haskell, runs in 3 ms. I had some fun with Ord and Enum, there really should be some modular Enum.

  • AdventOfCode

    AdventOfCode (by MichaelSquires)

    My solution was very similar to yours: https://github.com/MichaelSquires/AdventOfCode/blob/master/2022/d2.py

  • advent-of-code-2022

    Advent of Code 2022 in Zig (by thallada)

  • factor

    Factor programming language

    Here's my day two solution using Factor

  • F# https://github.com/ntreu14/Advent-of-Code-2022/blob/master/day02/Program.fs

  • AdventOfCode

    Trying to learn a little Rust this year: day 2

  • AOC2022

    Advent of Code 2022 (by Rakicy)

    Try one

  • advent_of_code

    I just picked up the language, but here's my somewhat over-complicated solution.

  • aoc-2022

    🎄 Advent of Code 2022 in Rust 🦀 (by andy2mrqz)

  • advent-of-code-2022

    Advent of Code 2022 solutions (by hadronized)

    My Rust solution.

  • aoc2022

  • advent_of_code_2022

    Github

  • advent-of-code

    My solutions for the annual christmas fun :evergreen_tree: :santa: (by zanmagerl)

    Using collections and simple pair mapper: code

  • sio

    An implementation of a variant of the MCxxxx programming language from Shenzhen I/O™

    My own variant of Shenzen I/O's programming language.

  • AoC22

    Advent of Code 2022 (by rDybing)

    Go Solution Day 2

  • advent-of-code

    My attempts of working on the advent of code questions starting from 2022 (by emilshr)

  • advent-of-code-2022

    Common lisp solutions to Advent of Code 2022 (by blake-watkins)

    Common Lisp 3139 / 2967

  • advent-of-code-2022

    My solutions to Advent of Code 2022 🎄 (by rm206)

  • aoc2022

    Advent of Code 2022 solutions in Lua! (by crnkofe)

  • aoc2022

    Trying to solve Advent of Code 2022 in 25 different languages (1 day = 1 language) (by GoldsteinE)

  • Advent-of-Code-2022

    Python 3 solution with a lot of help from dictionaries: https://github.com/EvanFNG/Advent-of-Code-2022/blob/main/day2.py

  • AOC-2022

    Typescript solution

  • Not proud of this, but happy to have discovered AoC and this awesome community (read: 👶's first post)!

  • advent-of-code-2022

    my answer in JS

  • AoC

    Discontinued My Advent of Code repo (by nickforddev)

    Node.js solution (repo)

  • AoC2022

  • AdventOfCode

    Advent of Code Challenges 2022 (by Spencer-Harrison)

  • Advent-Of-Code-2022

    AoC Solutions in Idris (by daysleeperx)

    Github

  • problems

    AdventOfCode, Exercism, Go, Elixir... (by GGuinea)

    Elixir code

  • advent

    advent of code solutions, plus some utilities (by willie)

    I don't normally share my solutions because they are so much more complex than they need to be, but I'm getting better. Day 2

  • AdventofCode

  • AdventOfCode2022

  • AoC2022

    Solutions to the Advent of Code (AoC) 2022 (by gequalspisquared)

  • advent_of_code_2022

    Discontinued [Moved to: https://github.com/michael-long88/advent-of-code-2022] (by michael-long88)

    Rust: https://github.com/michael-long88/advent_of_code_2022/blob/main/src/bin/02.rs

  • AdventOfCode2022

    Solution in C++!

  • adventOfCode

    Space where I solve the challenges in advent of code event (by j4mes999)

    Solution in Java

  • advent-of-code-2022

    2022 Advent of code in haskell ;) (by geraldserafin)

    Haskell

  • advent-of-code-2022

  • AOC_2022

    Python 3 ``` score = { "A": 1, "B": 2, "C": 3, "X": 1, "Y": 2, "Z": 3 }

  • advent_of_code

    Rust with Testsgithub repo Tried with Enums but still a little bit verbose

  • adventofcode

    Solutions for problems from AdventOfCode.com (by bhosale-ajay)

    F# - Single fold, TS - Readable, no if-else, Using Record Type always fun.

  • AdventOfCode2022

    2022 https://adventofcode.com/ (by jdvp)

    So I was code-golfing my solution a lot and trying various stuff to remove when statements in my Kotlin code and have the solution be purely mathematical, my full solution here: Day 2 Solution

  • advent-of-code-2022

    My take for each challenge (by Azouu)

    Here is my solution for today. It is a little bit verbose, but I want to make the code easy to understand by reading, so I hope I achieved that : https://github.com/Azouu/advent-of-code-2022/blob/main/day_2/main.py

  • Advent-Of-Code-2022

    My solutions for Advent Of Code 2022. Every day is written in another language, chosen randomly. (by Jomy10)

  • advent-of-code-2022

    Advent of Code 2022 Solutions in Python (by Fiddle-N)

    Python 3 https://github.com/Fiddle-N/advent-of-code-2022/blob/master/day_02/process.py

  • AdventOfCode2022

    Discontinued My solutions to Advent of Code 2022 https://adventofcode.com/ (by PetchyAL)

  • aoc_2022

    Discontinued Advent of Code Solutions [Moved to: https://github.com/hannahjayne/aoc] (by hannahjayne)

  • AOC2022

    Advent Of Code 2022 (by fuzzypixelz)

  • advent-of-code

    Solutions for adventofcode.com (by alexandru-dinu)

    My solution in Python: https://github.com/alexandru-dinu/advent-of-code/blob/main/2022/day-02/solve.py

  • AdventOfCode

    Created 2 Solutions, but thought my second solution was kind of interesting: https://github.com/t2minht/AdventOfCode22/blob/main/Day2/Day2Alternative.py

  • advent_of_code

    Advent of Code Solutions (by jordyjwilliams)

  • chapel

    a Productive Parallel Programming Language

    Chapel: An implicitly parallel solution

  • AdventOfCode2022

    Code for solutions to Advent of Code 2022. (by crzyhorse)

    C++

  • advent

    Advent Of Code (by gwoller)

    Code

  • AoC2022

    Solutions to Advent of Code 2022 puzzles. (by SwampThingTom)

  • advent-of-code

    aoc-2022 (by keidarcy)

  • Rust solution in about 30 lines: https://gitlab.com/landreville/advent-of-code-2022/-/blob/master/src/day2.rs

  • advent-of-code

  • CodingExercises

    A variety of coding exercises for practice and to learn new languages

    Rust: part 1, part 2 Python: part 1, part 2

  • Advent2022

  • AoC22

    Discontinued My Advent of Code 2022 solutions and utils (by Rik034)

    Go : https://github.com/Rik034/AoC22/blob/main/day2/main.go

  • advent-of-code

    Go / Golang solution

  • advent-of-code

  • Advent-of-Code

    This repo contains my solutions to the advent of code event. Learn more about advent of code at https://adventofcode.com (by AhmarTheRed)

  • advent-of-code-go

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

  • AdventOfCode

    My AdventOfCode solutions, various years in various languages! (by RascalTwo)

    TypeScript (852/3152)

  • random-code-collection

    Random

  • aoc.ex

    Repo: https://github.com/rewritten/aoc.ex

  • advent-of-code-2022

    Advent of Code solutions and inputs, written in Go (by fourstepper)

    A Go / Golang solution

  • advent-of-code

    advent-of-code (by avrame)

    Part 1

  • aoc-2022

    Advent of Code 2022 in Rust (by litpho)

  • advents-of-code

    🎄🎁 Solutions for the yearly advent of code challenges

    Learning Scala with advent of code this year (first time writing Scala). Solution for both parts here: https://github.com/joao-conde/advents-of-code/blob/master/2022/src/day02.scala

  • AoC2022

    Merry Christmas, y'all !!! (by tobstern)

  • AdventOfCode2022

    Here some ruby

  • scratch-www

    Standalone web client for Scratch

    Scratch:

  • AdventOfCode-Day2-Rock-Paper-Scissors

    C# console app that solves the AdventOfCode Day 2 - Rock Paper Scissors puzzle

    C# Solution, using switch statements, nothing fancy :/

  • advent-of-code

    part 2

  • AdventofCode_Day2_Part1

    Part 1

  • Day 2

  • AoC2022

    BQN GitHub

  • advent

    Solutions to https://adventofcode.com/ (by tsenart)

  • advent-of-code-ts

    My solutions to AoC puzzles in Typescript (by rogisolorzano)

  • advent-of-code-2022

  • aoc2022

    My Advent of Code 2022 solutions! (by SourishS17)

  • advent-of-code-2022

    Avent of Code 2022 - in elisp! (by cmatzenbach)

    Here is mine

  • aoc22

    AOC 22 (by mgldev)

    Part 1

  • AdventOfCode

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts