-šŸŽ„- 2022 Day 3 Solutions -šŸŽ„-

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

CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. 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.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. 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

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

  5. AoC2022

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

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

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

  8. AdventOfCode2022

    Kotlin solution, no sets!

  9. SaaSHub

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

    SaaSHub logo
  10. 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 :(

  11. aoc2022

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

  12. AdventOfCodeCSharp

    My AoC Solutions

    Straight forward iteration that bails as fast as possible code here

  13. AdventOfCode2022

    Python 62/93

  14. advent-of-code

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

  15. Fruitcake

    Advent of Code: 2022. In Rust.

    Done in Rust.

  16. AoC

    Cleaned up code

  17. aoc2022

    Advent of Code 2022 Solutions in Go (by nlowe)

    Go / Golang | 6562/5999

  18. aoc_2022

    Discontinued Bad 2022 Advent of Code solutions (by ClementTsang)

    For day 3, I tried LDPL. Solution here.

  19. adventofcode

    C++ not very compact

  20. advent-of-code-2022

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

    Kotlin github link

  21. noulith

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

    Noulith, 23/7

  22. advent-of-code-2022

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

  23. aoc-2022-kotlin

    AOC 2022 in Kotlin!

  24. adventofcode

    Advent of Code solutions (by jzhang113)

    Ruby code, map-reduce ftw

  25. advent-of-code-2022

  26. jellylanguage

    Jelly is a recreational programming language inspired by J.

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

  27. aoc2022

    šŸŽ„ (by jenarvaezg)

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

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

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

  31. adventofcode

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

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

  32. Advent-of-code

    My solutions of adventofcode.com (by MichalMarsalek)

  33. aoc_2022

  34. AOC2022

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

  35. adventofcode-2022

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

  36. advent-of-code-2022

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

  37. advent-of-code

    My advent of code solutions (by ailac22)

  38. aoc-2022

    šŸŽ„ Advent of Code 2022 in Rust šŸ¦€ (by andy2mrqz)

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

  40. advent-of-code-2022

    My solutions to Advent of Code 2022 šŸŽ„ (by rm206)

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

  42. AoC2022

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

  43. advent-of-code

    Advent Of Code Solutions (by sreedevk)

    Rust: PART 1 PART 2

  44. adventofcode

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

    My Scala solution.

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

  46. aoc2022

    Advent of Code 2022 on SCAMP (by jes)

  47. aoc2022

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

    GitHub - day3.rb

  48. advent-of-code

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

  49. aoc

    My repo for Advent Of Code (by dtomvan)

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

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

  51. AOC-day-3

    GitHub repo with both parts

  52. AOC-2022

  53. advent-of-code

    Advent of Code solutions in JS (by leyanlo)

  54. aoc2022

    Advent of Code 2022 - my answers

  55. aoc

    Advent of Code (by ramuuns)

  56. AdventOfCode2022

    My solutions to Advent of Code 2022 (by willkill07)

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

  58. advent-2022

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

  59. adventofcode-cpp

    David's C++ Solutions to Advent of Code

  60. advent-of-code-2022

    šŸŽ„ My solutions to Advent of Code 2022. (by v-shenoy)

    Solution.

  61. advent_of_code_2022

  62. advent2022

    Elixir solution

  63. AdventOfCode2022

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

  65. advent_of_code_22

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

  66. AdventOfNim

    My Advent of Code solutions written in Nim

    My Nim solution for today using sets: Github

  67. aoc2022

    Advent of Code 2022 in Lua (by cideM)

    GitHub Repository

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

  69. aoc2022

    Advent Of Code 2022 - Rust. (by mvduijn)

  70. advent-of-code

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

    Kotlin code Perfect task for using power of collections

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

  72. puzzles

    \,,,/ (by spyroid)

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

  73. Advent-of-Code

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

    python here is the link

  74. advent-of-code

  75. 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)

  76. AoC2022

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

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

  78. Advent-Of-Code

    Advent of code code (by vrash)

    JAVA this year (I miss python)

  79. advent-of-code-2022

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

  80. 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]

  81. Advent-of-Code-2022

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

  82. AoC2022

    Python

  83. Advent-of-Code

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

  84. AoC2022

  85. Advent-of-code-2022-golang

    2022 golang solutions of Advent Of Code

  86. aoc

    Advent of code (by maximiliansteiger)

    code on GitHub

  87. aoc-template-javascript-windows

    I used this Template

  88. advent-of-code

    Solving Advent of Code (by pemoreau)

    day03.go

  89. AdventOfCode2022

    Solutions for the Advent Of Code 2022 (by Guerillero)

    Python solutions

  90. Advent2022

  91. advent_of_code

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

  93. AOC2022

    Advent of Code in Rust (by mprantl)

    Advice very welcome! github

  94. advent-of-code-2022-rust

  95. Projects_and_AoC

    Interesting Projects | 2020 Advent of Code | etc.

  96. AdventOfCode2022

    Discontinued [GET https://api.github.com/repos/gmarsanich/AdventOfCode2022: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] (by gmarsanich)

    Python 3.11

  97. Advent_Of_Code

    Python 3.10

  98. 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)

  99. 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).

  100. advent-of-code

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

  101. advent-of-code-2022

  102. 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)

  103. advent-of-code

    aoc 2022 solutions (by simonemontella)

  104. AdventOfCode2022

  105. AdventOfCode2022

    Full program on GitHub

  106. advent-of-code

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

  107. aoc-go

    A Golang tool for generating code for Advent of Code

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

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

  110. AdventOfCode2022

    My solutions for AoC 2022 (by narimiran)

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

  111. advent_of_code_2022

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

    Link to github

  112. aoc22

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

    F#

  113. aoc2022

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

    Javascript / NodeJS: Source Diff for Day3 here

  114. advent-of-code-2022

    šŸ¦†I can't believe I'm doing this again šŸ¦† (by mrwilson)

    (source here)

  115. AdventOfCode2022

    Advent Of Code 2022 (by mhb164)

    Source Code (2 Solutions)

  116. 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/

  117. AdventOfCodeHaskell

    Advent of Code in Haskell

    Full solution

  118. AdventOfCode

    c# PartOneAndTwo

  119. advent-of-code-2022

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

  120. adventofcode

    Advent of Code šŸŽ„ (by markus-k)

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

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

  123. AoC-2022

    Discontinued Advent of Code 2022 (by clalos)

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

  124. adventofcode

  125. adventofrust

    advent of code in rust

    rust

  126. advent-of-code-2022

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

    Lua Part 1 and 2

  127. AoC22

    Advent of Code 22 (by xNymia)

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

  128. aoc2022

    Advent of Code 2022 (by xphade)

  129. aoc2022-zig

    I Don't Actually Know Zig At all

    Repo

  130. aoc-2022

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

    RUST Started learning Rust, comments are welcome! :)

  131. advent-2022

    Advent of code 2022 in Novah (by stackoverflow)

  132. advent-of-code-2022

    Discontinued My solutions for the Advent Of Code 2022 puzzles šŸŽ„šŸŽ…. (by vmichalak)

  133. adventofcode

    Advent of code solutions (by mathsaey)

  134. advent-of-code

    Advent of Code puzzles (by KT421)

  135. Advent-of-Code

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

  136. AdventOfCode2022

    C# (Link)

  137. aocrunner

    Advent of Code runner

    My template for JS and TS: AoC Runner

  138. swift-algorithms

    Commonly used sequence and collection algorithms for Swift

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

  139. advent-of-code

    Part 1

  140. Advent-of-Code-2022

    Github Solution

  141. AOC2022

    Advent of Code 2022 (by Rakicy)

    Day 3

  142. Advent-of-Code-2022

    Python3:

  143. advent_of_code_2022

    Advent of Code solutions for 2022, in Rust!

    Code | Blog Post

  144. Advent-of-Code-2022

  145. AdventOfCodeCSharp

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

  146. advent-of-code

    solutions for Advent of Code (by micod-liron)

    Day 3

  147. advent2022

  148. advent-of-code-2022

  149. 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)

  150. advent_of_code_2022

    Advent of code 2022 (by HendrikPetertje)

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

  152. Advent-Of-Code-2022

    AoC Solutions in Idris (by daysleeperx)

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

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

  154. Advent-of-Code-2022

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

    Python Solution

  155. Advent-Of-Code

  156. AdventOfCode

    Me and clojure are getting along pretty well so far.

  157. aoc-2022

    Solutions for Advent of Code 2022 (by kupych)

    Elixir MapSets made this one really simple and quick

  158. advent-of-code

    My 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};

  159. AdventOfCode

    Advent of code projects (by tjburch)

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

  160. AdventOfCode2022

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

    I liked this one, solution in python (part2)

  161. aoc2022

  162. racket-advent22

    Advent of Code 2022

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

  163. advent-of-code

    My personal advent of code repo (by soupglasses)

  164. aoc

    Advent of Code public repo (by napolux)

  165. adventofcode

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

  166. adventofcode

    šŸŽ„ Advent of Code solutions (by Drakota)

  167. advent-of-code-2022

    Advent Of Code (by VossFynn)

  168. aoc

    My Advent of Code solutions (by vypxl)

    Find all my solutions on Github

  169. aoc2022

    Advent of Code 2022 (by pbruyninckx)

    github

  170. AdventOfCode2022

  171. AoC2022

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

  172. adventofcode

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

    F# - Single fold and iteration for both the parts

  173. advent_of_code_2022

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

  174. AoC2022

    C# Repo

  175. adventofcode

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

    Github

  176. advent-of-code

    All my advent of code projects (by snowe2010)

  177. advent-of-code-2022

    Java 17 solutions for the šŸŽ„ Advent of Code 2022 (by CasvanDongen)

    Java 17 solution: github

  178. advent-of-code

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

    my solution in typescript: github

  179. Misc-DSA-Practice

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

  180. advent_of_code_2022

    Obfuscated, but concise python solution

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

  182. Advent-of-Code-2022

    F#. Using sets made this very easy.

  183. advent-of-code

    My solutions for adventofcode.com (by mdw-aoc)

  184. AdventOfCode2022

    The full code can be found here: Github

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

  186. Advent-of-Kotlin-2022

    Discontinued [GET https://api.github.com/repos/Ostkontentitan/Advent-of-Kotlin-2022: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]

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

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

  188. AdventOfCodeCPP

    Discontinued Advent of Code Solutions in C++

  189. aoc2022

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

  190. 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!

  191. advent-of-code-2022

    Advent of code 2022 (by peteryates)

  192. AoC2022

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

    Still working on part two. Repo: DDamianoff/Aoc2022

  193. advent-of-code-2022

  194. k_svensson

    Ett till repository

    Code

  195. aoc-cpp

    Advent of Code 2021

    github

  196. adventofcode-rust

    David's solutions to Advent of Code in Rust

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

  198. snippets

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

  199. advent-of-code-2022

    Github

  200. AdventOfCodeDay3pt2

    c++ beginner solution. code

  201. aoc2022

    Advent Of Code #2022 (by klubi)

    Ugly groovy solution: GitHub

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

  203. adventOfCode2022

  204. advent-of-code

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

  205. AoC

    Advent of Code (by Marterich)

  206. AdventOfCode2022

  207. aoc22

    In Lisp :P

  208. advent_of_code

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

  209. aoc2022

  210. 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)

  211. advent-of-code

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

  213. advent-of-code

  214. aoc2022

  215. advent_of_code

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

  216. AdventOfCode

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

  217. AdventOfCode

    Advent of Code Challenges 2022 (by Spencer-Harrison)

  218. aoc2022

    Advent of code 2022 (by MarcusDunn)

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

  220. advent-of-code-go

    All 10 years of adventofcode.com solutions in Go/Golang (and a little Python); 2015-2024

  221. AdventOfCode2022

    Discontinued Solutions to Advent of Code 2022 (by electronsandstuff)

    View on github

  222. advent-of-code

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

    Repo link.

  223. AdventOfCode

    Discontinued [GET https://api.github.com/repos/KosmicAnomaly/AdventOfCode: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] (by KosmicAnomaly)

    Ansible

  224. random-code-collection

    Random

  225. adventofcode-2022

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

    Python 3 Solution

  226. advent-of-code-2022

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

  227. rye

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

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

  228. AdventOfCode

    Advent of Code 2022 | Rust (by emiltang)

  229. adventofcode

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

  230. AdventOfCode

    Python soution on Github

  231. advent-of-code-2022

    Node + TypeScript

  232. aoc-2022

    Advent of Code 2022 in Rust (by litpho)

  233. AoC2022

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

  234. aoc2022

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

  235. aoc

    advent of code (by apparentorder)

  236. advent_of_code

    Advent of Code Solutions (by jordyjwilliams)

  237. advent-of-code-2022

    In Rust! (by reposefulGrass)

    Day 03

  238. AdventOfCode-Day3-RucksackPrioritization

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

    C# solution using LINQ, Repo

  239. AdventofCode_Day3_Part1

    Part 1

  240. advent

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

  241. 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Ā³).

  242. advent-of-code-2022

  243. aoc2022

    My Advent of Code 2022 solutions! (by sourishsharma17)

  244. advent-of-code-solved

    My advent of code, in jqā€¦

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

  245. SaaSHub

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

    SaaSHub logo
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

  • What are some of projects to start with for a beginner in rust but experienced in programming (ex: C++, Go, python) ?

    3 projects | /r/rust | 31 May 2023
  • I moved all my input files to a private repo and used it as a submodule

    4 projects | /r/adventofcode | 17 Jan 2023
  • -šŸŽ„- 2022 Day 21 Solutions -šŸŽ„-

    124 projects | /r/adventofcode | 20 Dec 2022
  • -šŸŽ„- 2022 Day 14 Solutions -šŸŽ„-

    114 projects | /r/adventofcode | 13 Dec 2022
  • A Neat XOR Trick

    6 projects | news.ycombinator.com | 13 Dec 2022

Did you know that Python is
the 2nd most popular programming language
based on number of references?