-🎄- 2022 Day 3 Solutions -🎄-

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

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

    Advent of Code (by michaeljgallagher)

    So close to the leaderboard today! Thought I was fast but was still just outside of it. Oh well.

  • AoC

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

    no smart hacks https://github.com/Fadi88/AoC/blob/master/2022/day03/code.py

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

  • AdventOfCode

    Yeah, I tried ended up falling back to vectors as well, but I went back afterwords and redid it with the hashsets. My code is not quite a compact, but here is my hashset solution: https://github.com/Quillbert/AdventOfCode/blob/master/2022/day03b/src/main.rs

  • AoC2022

    Very similar to my solution, which I also like how it turned out :)

  • aoc2022

    Discontinued Advent of Code 2022 (by ednl)

    Looks really convoluted to me, with all those libraries. Of course, things like vec_t might come in handy later this year, but I didn't feel any need for them so far. (Is the repo complete? You include data.h but I only see data.txt.) I am more used to programming C in an embedded style. Today took about 60 lines in one file: https://github.com/ednl/aoc2022/blob/main/03.c

  • AoC2022

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

    I used Pascal today too but yours is much more concise than mine. Nice job!

  • AdventOfCode2022

    Kotlin solution, no sets!

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

  • AdventOfCode

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

    Python3 116/50. Video. Code. Got a wrong answer on part1 :(

  • aoc2022

    My own personal overengineered helpers to solve AoC problems in Rust (by udoprog)

  • AdventOfCodeCSharp

    My AoC Solutions

    Straight forward iteration that bails as fast as possible code here

  • AdventOfCode2022

    Python 62/93

  • advent-of-code

    Solutions to Advent of Code exercises https://adventofcode.com/ (by verdammelt)

  • Fruitcake

    Advent of Code: 2022. In Rust.

    Done in Rust.

  • AoC

    Cleaned up code

  • aoc2022

    Advent of Code 2022 Solutions in Go (by nlowe)

    Go / Golang | 6562/5999

  • aoc_2022

    Discontinued Bad 2022 Advent of Code solutions (by ClementTsang)

    For day 3, I tried LDPL. Solution here.

  • adventofcode

    C++ not very compact

  • advent-of-code-2022

    Advent of Code 2022, solved in Kotlin (by nrsherr2)

    Kotlin github link

  • noulith

    *slaps roof of [programming language]* this bad boy can fit so much [syntax sugar] into it

    Noulith, 23/7

  • advent-of-code-2022

    actually publishing my solutions now that they're not redundant...

  • aoc-2022-kotlin

    AOC 2022 in Kotlin!

  • adventofcode

    Advent of Code solutions (by jzhang113)

    Ruby code, map-reduce ftw

  • advent-of-code-2022

  • jellylanguage

    Jelly is a recreational programming language inspired by J.

    Jelly (put the input in the first command line argument):

  • aoc2022

    🎄 (by jenarvaezg)

  • aoc2022

    But it got the job done. Here's mine: https://github.com/UnicycleBloke/aoc2022/blob/main/day03/day03.cpp. I think I really ought to spend some time learning to use the ranges library this time.

  • AoC

    Advents of Code in NASM x86_64 assembly (by JustinHuPrime)

    In part 1, I read each string, then split it in half, passing it to a subroutine (that I honestly should have inlined). This subroutine then called a new library function - searchc - my other character finding function, findc, assumed that the character would eventually be found. I managed to do some assembly optimization via interprocedural analysis - I saw that searchc would not clobber anything except rax, so I could keep the same values in the same registers. This is the first time I've written code better than a compiler usually does - compilers have trouble doing these sort of interprocedural analyses across translation units. Once I had the common item, I could use a lookup table to compute the priority. Unlike last time, this was a one-dimensional lookup table, and I couldn't rely on registers being cleared how I wanted, so I saved the table as a table of quadwords instead of a table of bytes - this let me remove a cast.

  • AdventOfCode2022

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

    Kotlin for Day 3 https://github.com/jdvp/AdventOfCode2022/blob/main/src/main/kotlin/me/jdvp/adventofcode/daily/Day3.kt

  • adventofcode

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

    linq https://github.com/encse/adventofcode/blob/master/2022/Day03/Solution.cs

  • Advent-of-code

    My solutions of adventofcode.com (by MichalMarsalek)

  • aoc_2022

  • AOC2022

    link, feel pretty good, couldn't make the leaderboard tho.

  • adventofcode-2022

    nim https://github.com/ahungry/adventofcode-2022/blob/master/d3e2.nim

  • [Golang](https://github.com/schamanegeist/advent-of-code-2022/blob/main/bin/challenge3/go/main.go)

  • advent-of-code

    My advent of code solutions (by ailac22)

  • aoc-2022

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

  • Advent-of-Code-2022

    Solutions for Advent of Code 2022 written in Kotlin (by patrick-elmquist)

    part1 { input -> input.lines.sumOf { line -> val (left, right) = line.chunked(line.length / 2).map { it.toSet() } left.intersect(right).single().priority } } part2 { input -> input.lines.chunked(3) { group -> val (first, second, third) = group.map { line -> line.toSet() } first.intersect(second).intersect(third).single().priority }.sum() } ``` https://github.com/patrick-elmquist/Advent-of-Code-2022/blob/main/src/main/kotlin/Day3.kt

  • advent-of-code-2022

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

  • advent-of-code

    Advent of Code in Elixir and TypeScript (by sreetamdas)

    Elixir solution: https://github.com/sreetamdas/advent-of-code/blob/main/lib/2022/day_03/day_03.ex

  • AoC2022

    The whole code can be found here: https://github.com/Seishin/AoC2022/blob/master/day3/solutions.py

  • advent-of-code

    Advent Of Code Solutions (by sreedevk)

    Rust: PART 1 PART 2

  • adventofcode

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

    My Scala solution.

  • adventofcode

    Advent of Code challenge solutions (by flwyd)

    Elixir, on GitHub. Below I've elided the implementation of common (builds a MapSet of items shared by all arguments) and only_element.

  • aoc2022

    Advent of Code 2022 on SCAMP (by jes)

  • aoc2022

    My solutions for the Advent Of Code 2022: https://adventofcode.com (by naturaln0va)

    GitHub - day3.rb

  • advent-of-code

    APL: https://github.com/chenson2018/advent-of-code/blob/main/2022/03/apl/03.apl

  • aoc

    My repo for Advent Of Code (by dtomvan)

    After cleaning it up this is what I came up with: Code

  • AoC2022

    A collection for my Advent of Code (https://adventofcode.com/) solutions using the Nim programming languages (https://nim-lang.org/) (by genius487)

    I learned a lot since previous years. I like this solution.

  • AOC-day-3

    GitHub repo with both parts

  • AOC-2022

  • advent-of-code

    Advent of Code solutions in JS (by leyanlo)

  • aoc2022

    Advent of Code 2022 - my answers

  • aoc

    Advent of Code (by ramuuns)

  • AdventOfCode2022

    My solutions to Advent of Code 2022 (by willkill07)

  • Advent-of-Code-Solutions

    This repository includes my solutions to the Advent of Code puzzles using *python*. (by Fransandi)

    Ref: https://github.com/Fransandi/Advent-of-Code-Solutions/blob/main/2022/solutions/day3.py

  • advent-2022

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

  • adventofcode-cpp

    David's C++ Solutions to Advent of Code

  • advent-of-code-2022

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

    Solution.

  • advent_of_code_2022

  • advent2022

    Elixir solution

  • AdventOfCode2022

  • aoc2022

    Discontinued [Moved to: https://github.com/ashishjh-bst/advent-of-code] (by ashishjh-bst)

    Part 1: https://github.com/ashishjh-bst/aoc2022/blob/master/day3/part1.go Part 2: https://github.com/ashishjh-bst/aoc2022/blob/master/day3/part2.go

  • advent_of_code_22

    C++ solution: https://github.com/tigerManBot/advent_of_code_22/blob/main/day3/day3.cpp

  • AdventOfNim

    My Advent of Code solutions written in Nim

    My Nim solution for today using sets: Github

  • aoc2022

    Advent of Code 2022 in Lua (by cideM)

    GitHub Repository

  • pretty simple one. I use some old helper functions I have from previous years. If anyone has interest on seeing how they are implemented: https://github.com/blfuentes/AdventOfCode_2022

  • aoc2022

    Advent Of Code 2022 - Rust. (by mvduijn)

  • advent-of-code

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

    Kotlin code Perfect task for using power of collections

  • advent-of-code

    https://adventofcode.com/ (by stewSquared)

    Here's a short Scala solution: https://github.com/stewSquared/advent-of-code/blob/master/src/main/scala/2022/Day03.worksheet.sc

  • puzzles

    \,,,/ (by spyroid)

    Kotlin → https://github.com/spyroid/puzzles/blob/main/src/aoc/y2022/day3/day3.kt

  • Advent-of-Code

    Advent of Code https://adventofcode.com/2020 My world of trying new stuff (by amitk1990)

    python here is the link

  • advent-of-code

  • AoC-2022-in-Bash

    Advent Of Code 2022 in bash

    My solution for part II in readable bash script. (All my solutions are on my github)

  • AoC2022

    There are some helper classes that handles the input data. Full solution can be found here: repo

  • aoc2022apl

    Advent of Code 2022 solutions in Dyalog APL

    Dyalog APL ⎕IO←1 ⋄ p←(⎕A,⍨⎕C ⎕A)∘⍳¨⊃⎕NGET'p3.txt'1 +/⊃¨(2÷⍨≢¨p)(↑∩↓)¨p ⍝ part 1 +/⊃¨⊃¨∩/¨p⊂⍨1 0 0⍴⍨≢p ⍝ part 2

  • Advent-Of-Code

    Advent of code code (by vrash)

    JAVA this year (I miss python)

  • advent-of-code-2022

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

  • advent_c

    All of the advents of code in pure C, without libraries

    C - we don't need no stinking sets! Because we have uint64_ts and masking. [Github]

  • Advent-of-Code-2022

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

  • AoC2022

    Python

  • Advent-of-Code

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

  • AoC2022

  • Advent-of-code-2022-golang

    2022 golang solutions of Advent Of Code

  • aoc

    Advent of code (by maximiliansteiger)

    code on GitHub

  • I used this Template

  • advent-of-code

    day03.go

  • AdventOfCode2022

    Solutions for the Advent Of Code 2022 (by Guerillero)

    Python solutions

  • Advent2022

  • AdventOfCode2022

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

    My python solution: https://github.com/PetchyAL/AdventOfCode2022/blob/286472bfad5e339c0e6ac4c082aa3de01e20ea77/solutions/day3/day3.py

  • AOC2022

    Advent of Code in Rust (by mprantl)

    Advice very welcome! github

  • AoC

    Interesting Projects | 2020 Advent of Code | etc. (by shadowstejo)

  • AdventOfCode2022

    Python 3.11

  • Advent_Of_Code

    Python 3.10

  • aoc2022

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

    C++17 (solution online: https://github.com/deafpolygon/aoc2022/blob/main/3/day3.cpp)

  • advent_of_code

    This repository contains my solutions for the Advent of Code programming challenges. (by GabrielTorland)

    The code is also available on my GitHub (here).

  • advent-of-code

    Solutions for Advent of Code (https://adventofcode.com/) (by D-Andreev)

  • advent-of-code-2022

  • programming-challenges

    My attempts at solving various programming challenges. Leetcode, codewars, adventofcode, etc (by x-zvf)

    I haven't written any clojure since last year's AoC, so I am a bit rusty. github ```clojure (require 'clojure.string) (require 'clojure.set)

  • advent-of-code

    aoc 2022 solutions (by simonemontella)

  • AdventOfCode2022

  • AdventOfCode2022

    Full program on GitHub

  • advent-of-code

    My personal entry for https://adventofcode.com/ (by sigmundklaa)

  • aoc-go

    A Golang tool for generating code for Advent of Code

  • advent-of-code-2022

    Rust 3a: use day_03::{intersect, priority}; fn main() { let input = include_bytes!("../../../input/day_03.txt"); let sum_of_priorities = input .split(|&byte| byte == b'\n') .map(|line| line.split_at(line.len() / 2)) // split into equally sized compartments .map(|(l, r)| intersect([l.iter().copied(), r.iter().copied()])) // find the intersection of the compartments .map(priority) // map to priorities .sum::(); println!("{}", sum_of_priorities); } 3b: use day_03::{intersect, priority}; fn main() { let input = include_bytes!("../../../input/day_03.txt"); let lines = input.split(|&byte| byte == b'\n').collect::>(); let sum_of_priorities = lines .chunks(3) .map(|chunks| intersect(chunks.iter().map(|chunk| chunk.iter().copied()))) .map(priority) // map to priorities .sum::(); println!("{}", sum_of_priorities); } shared code (module: `day_03`): use std::collections::HashSet; pub fn intersect(sets: I) -> u8 where I: IntoIterator, Set: IntoIterator, { let common = sets .into_iter() .map(|set| { let set: HashSet = HashSet::from_iter(set); set }) .reduce(|l, r| &l & &r); *common.unwrap().iter().next().unwrap() } pub fn priority(item: u8) -> u32 { (if item >= b'a' { item + 1 - b'a' } else { item + 27 - b'A' }) as u32 } repo: https://github.com/foresterre/advent-of-code-2022

  • AOC2022

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

    Haskell, runs in 4 ms. I feel a little dirty using S.findMin and M.!, but it surely does work pretty good when the input is clean.

  • AdventOfCode2022

    My solutions for AoC 2022 (by narimiran)

    But to be honest, I like my Clojure solution even more.

  • advent_of_code_2022

    My daily solutions to the Advent of Code 2022 programming puzzles. (by szmate00)

    Link to github

  • aoc22

    Advent of code 2022 solutions in F# (by lboshuizen)

    F#

  • aoc2022

    Advent of Code 2022 - if I have time lol (by jabis)

    Javascript / NodeJS: Source Diff for Day3 here

  • advent-of-code-2022

    🦆I can't believe I'm doing this again 🦆 (by mrwilson)

    (source here)

  • AdventOfCode2022

    Advent Of Code 2022 (by mhb164)

    Source Code (2 Solutions)

  • advent-of-golf-2022

    Golfed code for Advent of Code 2022

    Someone started a repo for "advent of code golfing", i've added more explanations there. https://github.com/Starwort/advent-of-golf-2022/

  • AdventOfCodeHaskell

    Advent of Code in Haskell

    Full solution

  • AdventOfCode

    c# PartOneAndTwo

  • advent-of-code-2022

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

  • adventofcode

    Advent of Code 🎄 (by markus-k)

  • otome-os

    A shell / fantasy operating system inspired by functional programming written in Lua

    I have it in a repo on Github, but it's still very experimental.

  • AdventOfCode2022

    Advent of code 2022 solutions (by Suicolen)

    My Java solution that im quite happy with: https://github.com/Suicolen/AdventOfCode2022/blob/main/src/main/java/suic/days/Day03.java

  • AoC-2022

    Advent of Code 2022 (by clalos)

    Part 1: https://github.com/clalos/AoC-2022/blob/main/day3a/main.zig

  • adventofcode

  • adventofrust

    advent of code in rust

    rust

  • advent-of-code-2022

    My solutions to Advent of Code 2022. (by MrSimbax)

    Lua Part 1 and 2

  • AoC22

    Advent of Code 22 (by xNymia)

    c++ : https://github.com/xNymia/AoC22/blob/master/Day3/main.refactor.cpp

  • aoc2022

    Advent of Code 2022 (by xphade)

  • aoc2022-zig

    I Don't Actually Know Zig At all

    Repo

  • aoc-2022

    Advent of Code 2022 journey with Rust (by jokr-1)

    RUST Started learning Rust, comments are welcome! :)

  • advent-2022

    Advent of code 2022 in Novah (by stackoverflow)

  • advent-of-code-2022

    My solutions for the Advent Of Code 2022 puzzles 🎄🎅. (by vmichalak)

  • adventofcode

    Advent of code solutions (by mathsaey)

  • advent-of-code

    Advent of Code puzzles (by KT421)

  • Advent-of-Code

    Exercises from https://adventofcode.com/ (by AritonV10)

  • AdventOfCode2022

    C# (Link)

  • aocrunner

    Advent of Code runner

    My template for JS and TS: AoC Runner

  • swift-algorithms

    Commonly used sequence and collection algorithms for Swift

    Swift. Algorithms contains chunks(ofCount: 3) but I had to write chunks(totalCount:) myself.

  • advent-of-code

    Part 1

  • Github Solution

  • AOC2022

    Advent of Code 2022 (by Rakicy)

    Day 3

  • Advent-of-Code-2022

    Python3:

  • advent_of_code_2022

    Advent of Code solutions for 2022, in Rust!

    Code | Blog Post

  • Advent-of-Code-2022

  • AdventOfCodeCSharp

    Advent of Code Puzzle Solutions in C# (by jbush7401)

  • advent-of-code

    solutions for Advent of Code (by micod-liron)

    Day 3

  • advent2022

  • advent-of-code-2022

  • advent_of_code_2022

    This is where I put my answers to the advent of code 2022 (by taewyth)

    Rust nothing too fancy, I'm open to any optimization recommandations (haven't done any here)

  • advent_of_code_2022

    Advent of code 2022 (by HendrikPetertje)

  • advent-of-code-2022

    Advent of Code 2022 (by Toxe)

    C++: https://github.com/Toxe/advent-of-code-2022/blob/main/src/day03/day03.cpp

  • Advent-Of-Code-2022

    AoC Solutions in Idris (by daysleeperx)

    No proofs, does not pass totality check, still had a lot of fun

  • AdventOfCodeTI83

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

    Z80 Assembly Ran on a TI-83 Graphing calculator.

  • Advent-of-Code-2022

    Discontinued This is my answers to resolve the problems of the competition Advent of the code (by EdwinMakRouts)

    Python Solution

  • Advent-Of-Code

  • AdventOfCode

    Me and clojure are getting along pretty well so far.

  • aoc-2022

    Solutions for Advent of Code 2022 (by kupych)

    Elixir MapSets made this one really simple and quick

  • advent-of-code

    My Rust solutions to Advent of Code (by fritzrehde)

    My rust solution using only iterators, no for loops. It's close to a one liner, but imo pretty readable. ```rust use std::fs::File; use std::io::{self, prelude::*, BufReader};

  • AdventOfCode

    Advent of code projects (by tjburch)

    30 minutes or less solution in Julia - time elapsed 22:07

  • AdventOfCode2022

    My advent of code 2022 solutions made in python (by wutata)

    I liked this one, solution in python (part2)

  • aoc2022

  • racket-advent22

    Advent of Code 2022

    Day 3 using Racket https://github.com/dougfort/racket-advent22

  • advent-of-code

    My personal advent of code repo (by soupglasses)

  • aoc

    Advent of Code public repo (by napolux)

  • adventofcode

    PowerShell https://github.com/kirkhofer/adventofcode/blob/main/2022/day03/posh/day03.ps1

  • adventofcode

    🎄 Advent of Code solutions (by Drakota)

  • advent-of-code-2022

    Advent Of Code (by VossFynn)

  • aoc

    My Advent of Code solutions (by vypxl)

    Find all my solutions on Github

  • aoc2022

    Advent of Code 2022 (by pbruyninckx)

    github

  • AdventOfCode2022

  • AoC2022

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

  • adventofcode

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

    F# - Single fold and iteration for both the parts

  • advent_of_code_2022

    My solution still smells a bit like python: https://github.com/fnands/advent_of_code_2022/tree/main/day_3

  • AoC2022

    C# Repo

  • adventofcode

    General advent of code repo. Racket so far. (by ZachFontenot)

    Github

  • advent-of-code

    All my advent of code projects (by snowe2010)

  • advent-of-code-2022

    Java 17 solutions for the 🎄 Advent of Code 2022 (by CasvanDongen)

    Java 17 solution: github

  • advent-of-code

    My solutions of adventofcode.com, with TypeScript (by mastondzn)

    my solution in typescript: github

  • Misc-DSA-Practice

    Getting some practice with decorator factory pattern in Python 3 (read: pretending like I write modular code on the reg).

  • advent_of_code_2022

    Obfuscated, but concise python solution

  • advent-of-code-2022

    Solutions to Advent of Code 2022 puzzles https://adventofcode.com/2022 (by Lysander6)

    Day 3 solution in Rust🦀: github. Quite satisfied with how it came out

  • F#. Using sets made this very easy.

  • advent-of-code

    My solutions for adventofcode.com (by mdwhatcott)

  • AdventOfCode2022

    The full code can be found here: Github

  • AdventOfCode2022

    This is my attempt to solve AdventOfCode2022 (https://adventofcode.com/2022/) and learn some Rust (by samoylenkodmitry)

    Rust ugly solution https://github.com/samoylenkodmitry/AdventOfCode2022/blob/master/src/day3.rs

  • Advent-of-Kotlin-2022

    A Kotlin solution: https://github.com/Ostkontentitan/Advent-of-Kotlin-2022/blob/main/src/main/kotlin/day1/dayThree.kt

  • advent-of-code

    My Advent of Code answers (by tcsullivan)

    Otherwise, this was just some straightforward nested iteration between strings. Here's an annotated version of part 2.

  • AdventOfCodeCPP

    Discontinued Advent of Code Solutions in C++

  • aoc2022

    The helper function is available in my Day 1 post. All solutions are available here.

  • AdventOfCode2022

    My C# solutions to Advent of Code 22. Trying to one-liner as many as possible but I've already failed at Day 5. (by joel-heath)

    Trying to do as many days as I can as one-liners in C# on my GitHub!

  • advent-of-code-2022

    Advent of code 2022 (by peteryates)

  • AoC2022

    AoC-20220: rust learning (and C# / Powershell cuz why not) (by DDamianoff)

    Still working on part two. Repo: DDamianoff/Aoc2022

  • advent-of-code-2022

  • k_svensson

    Ett till repository

    Code

  • aoc-cpp

    Advent of Code 2021

    github

  • adventofcode-rust

    David's solutions to Advent of Code in Rust

  • advent-of-code-2022

    I later learned that CL has an intersection function that works on lists, so I didn't have to use fset at all. The new version is here: https://github.com/atgreen/advent-of-code-2022/blob/main/03.lisp

  • snippets

    Here's my Common Lisp solution hacked together iteratively in an Emacs scratch buffer.

  • Github

  • AdventOfCodeDay3pt2

    c++ beginner solution. code

  • aoc2022

    Advent Of Code #2022 (by klubi)

    Ugly groovy solution: GitHub

  • aoc-2022-rust

    Solutions for Advent of Code 2022

    My solution in Rust. As I'm still learning Rust part 2 was a struggle because of fights with the borrow checker and type system.

  • adventOfCode2022

  • advent-of-code

    Bash, with as much pipes as possible: https://github.com/Thiht/advent-of-code/tree/master/2022/03

  • AoC

    Advent of Code (by Marterich)

  • AdventOfCode2022

  • aoc22

    In Lisp :P

  • advent_of_code

    My solutions for each of the days of advent of code (by ddavis3739)

  • aoc2022

  • 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

  • AoC.2022

    Advent of Code 2022, I'm going to try to use Excel. First with LAMBDA, then maybe VBA or OfficeScripts.

    The first half I even simplified a bit more on my GitHub by using MAP instead of BYROW. I hadn’t realized that MAP supports multiple columns.

  • advent-of-code

  • aoc2022

  • advent_of_code

    Day 3 of learning Rust... too many for loops. GitHub

  • AdventOfCode

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

  • AdventOfCode

    Advent of Code Challenges 2022 (by Spencer-Harrison)

  • aoc2022

    Advent of code 2022 (by MarcusDunn)

  • advent-of-code-2022

    Rust using some of the bytes logic that I saw from other people's code from days 1 and 2: https://github.com/michael-long88/advent-of-code-2022/blob/main/src/bin/03.rs

  • advent-of-code-go

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

  • AdventOfCode2022

    Solutions to Advent of Code 2022 (by electronsandstuff)

    View on github

  • advent-of-code

    My (incomplete) solutions to the Advent of Code yearly challenges. (by Chrinkus)

    Repo link.

  • AdventOfCode

    Ansible

  • random-code-collection

    Random

  • adventofcode-2022

    solutions for advent of code 2022 (by camaron-ai)

    Python 3 Solution

  • Back with a seriously over-engineered DI C# solution with test library. See on GitHub.

  • rye

    homoiconic dynamic programming language with some new ideas (by refaktor)

    Part 1 Solution in Ryelang (ryelang.blogspot.com)

  • AdventOfCode

    Advent of Code 2022 | Rust (by emiltang)

  • adventofcode

    My solutions to the Advent of Code challenges (by djotaku)

  • AdventOfCode

    Python soution on Github

  • advent-of-code-2022

    Node + TypeScript

  • aoc-2022

    Advent of Code 2022 in Rust (by litpho)

  • AoC2022

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

  • aoc2022

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

  • aoc

    advent of code (by apparentorder)

  • advent_of_code

    Advent of Code Solutions (by jordyjwilliams)

  • advent-of-code-2022

    In Rust! (by reposefulGrass)

    Day 03

  • AdventOfCode-Day3-RucksackPrioritization

    C# console app that solves the AdventOfCode - Day 3 - Rucksack Prioritization Puzzle

    C# solution using LINQ, Repo

  • AdventofCode_Day3_Part1

    Part 1

  • advent

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

  • a2tools

    Stuff I write for my Apple //c

    My first BASIC implementation of an exercice. It's one with an O(n²) algorithm and string manipulation inside, making it, I think, O(n³).

  • advent-of-code-2022

  • aoc2022

    My Advent of Code 2022 solutions! (by SourishS17)

  • advent-of-code-solved

    My advent of code, in jq…

    Runnable links here: https://github.com/remy/advent-of-code-solved/blob/main/2022/

  • 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