-🎄- 2022 Day 6 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)

  • adventofcode

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

    TS - Took some time to think, but simple optimized solution without any set or dict.

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

  • HemiprocneMystacea

    Stuff that should be in Swift and  Frameworks, but is not yet.

    Swift. containsOnlyUniqueElements is not in the standard library; it relies on this Set initializer.

  • aoc

    Solutions to Advent of Code puzzles in Python. (by seligman)

    github

  • AdventOfCode

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

    Python3 19/24. Video. Code. Quick one today!

  • advent-of-code

    Advent of Code (by morgoth1145)

    Python 3 243/195

  • advent-of-code-2022

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

    https://github.com/betaveros/advent-of-code-2022/blob/main/p6.noul or, in brief:

  • 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

  • Advent-of-Code

    Advent of Code (by michaeljgallagher)

    Impressive how fast everyone was with this one today

  • Advent-of-Code-2022-solutions

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

  • AdventOfCode2022

    My solutions for Advent Of Code 2022 (by akaritakai)

    Repo link

  • aoc2022

    Kotlin - Live Stream on YouTube - GitHub

  • AdventOfCodeCSharp

    My AoC Solutions

  • Advent-of-Code-2022

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

  • advent-of-code

    Advent of Code solutions in JS (by leyanlo)

  • aoc2022

    🎄 (by jenarvaezg)

  • advent-of-code

    Advent Of Code Solutions (by sreedevk)

    Part 1

  • adventofcode

    Solutions to the yearly Advent of Code challenges in Java. (by joshuaruegge)

    Github

  • AOC-2022-Day-6

    Github

  • aoc2022

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

    day6.rb on GitHub

  • aoc

  • advent-of-code-2022

  • AdventOfCode-PS

    Advent of Code solutions in (mostly) PowerShell

  • advent-of-code-2022

  • aoc2022

    Advent of Code 2022 on SCAMP (by jes)

  • AdventOfCode

    2022 Day 06 in Golang

  • aoc_2022

  • AoC

    code related to Eric Wastel's challenge (by mendelmunkis)

    Language: C

  • AoC

    Advents of Code in NASM x86_64 assembly (by JustinHuPrime)

    Part 1 was solved using brute force - for each starting point, I checked if the next four bytes were distinct. Part 1 ran in under 1 millisecond and was 10544 bytes long.

  • advent-of-code

    Advent of Code in Elixir and TypeScript (by sreetamdas)

    Elixir GitHub

  • advent_of_code

    GitHub link for more readable version

  • aoc2022

    Solutions of Advent Of Code 2022 (by drupol)

    Here's the solution in PHP: https://github.com/drupol/aoc2022/blob/main/aoc2022-6-part1.php

  • AdventofCode2022

    My answers for Advent of Code 2022 (by poesraven8628)

  • aoc2022

    Yes. Barely an inconvenience. https://github.com/UnicycleBloke/aoc2022/blob/main/day06/day06.cpp. I realised after that std::set has a range constructor that should make life even simpler. Next time...

  • advent-of-code-2022

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

  • advent-2022

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

  • adventofcode

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

    My Scala solution.

  • Advent-of-Code

    Advent of Code Solutions (by VictorOnink)

    My solution is here

  • AdventOfCode

    Hacky solutions for [Advent of Code](https://adventofcode.com), working on past problems (by AllanTaylor314)

    Python (and a slightly tidier version), then Google Sheets

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

    GitHub

  • AdventOfCode2022

  • advent_of_code

    My attempts to solve https://adventofcode.com (by shrugalic)

  • advent-of-code

    Refactored solution: https://github.com/nithinbekal/advent-of-code/blob/c3788728010d8bcacd1d622996ef56226ba0370a/lib/06.rb

  • aoc2022

    Advent Of Code 2022 - Rust. (by mvduijn)

  • aoc

    Advent of Code (by ramuuns)

  • advent-of-go

    github

  • advent-2022

    On GitHub

  • advent-of-code-2022

    Here's a very efficient sliding window approach in Rust:

  • advent2016

    Advent of code 2016

    Github

  • AdventOfCode

    Python

  • advent-of-code-julia

    Julia using the same solution for both problem.

  • Advent-of-code

    My solutions of adventofcode.com (by MichalMarsalek)

    Wow, almost identical to mine: https://github.com/MichalMarsalek/Advent-of-code/blob/master/2022/Nim/day6.nim

  • advent-of-code

    Noah's Advent of Code solutions (by noahtallen)

    A less clever Rust solution which maintains a vector of "last few chars". At each iteration, that vector is cast to a set to check for uniqueness. Technically still O(N):

  • adventofcode

    Advent of Code challenge solutions (by flwyd)

    Elixir, 5251/15635 🤦‍♂️, code, Reflections, with two bonus implementations

  • advent-of-code-2022

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

    Immutable sets I used in previous days were too slow for part 2 so I've spent most of my time on this puzzle coding a more efficient MultiSet data structure. Overkill? Probably, yes. Fun? Also yes.

  • AOCx2022

    This repository contains my solutions for the Advent of Code 2022 event. Learn more about the event here - https://adventofcode.com/2022/about

    Part 1 and Part2

  • advent-of-cobol

    Advent of Code in COBOL.... WHY?

    COBOL - Source Despite not having sets, it's still a somewhat elegant solution. My love for this language is growing.

  • aoc-2022

    Advent of Code 2022 in Rust (by litpho)

  • aoc2022

    Advent of Code 2022 - my answers

  • Advent-of-Code-2022

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

  • aoc-go

    Advent of Code - Go edition 🐿 (by hkennyv)

  • advent-of-code-2022

    Repo containing solutions for Advent of Code 2022 (by ste001)

    Solution

  • advent-of-code

    Typescript.

  • aoc

    advent of code (by apparentorder)

  • adventofcode2022

    COBOL - Part 1 & Part 2

  • aoc2022

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

    Go https://github.com/ashishjh-bst/aoc2022/blob/master/day6/solution.go

  • AoC2022

    F# - yet another day made trivial by Seq and Set modules.

  • aoc

    Nice solution. I'm aiming for the shortest run time (here's mine, runs in 40µs), your algorithm has a lower big O, but I think using a hashset is detrimental to performance here. Have you tried using the fnv crate ? It provides hashset and hashmap implementation with a faster hashing algorithm.

  • adventofcode2022

    Advent of Code 2022 - solutions in human readable PHP code (by mariush-github)

  • advent-of-clojure

    clo clo clo

    Clojure: https://github.com/motform/advent-of-clojure/blob/master/src/advent_of_clojure/2022/06.clj

  • aoc-go

    A Golang tool for generating code for Advent of Code

  • Advent-of-code-2022

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

  • aoc-2022-rust

    Solutions for Advent of Code 2022

  • AdventOfCode2022

    Advent of Code 2022!!!! (by mdmake)

  • Advent-of-Code-2022

    Advent of Code 2022 in Rust (by cgubbin)

    Rust (repo). Didn't use a set even though it might have been more idiomatic. I think this was the simplest one so far this year for me.

  • adventofcode

    Python solutions to Advent of Code puzzles, https://adventofcode.com/ (by fuglede)

    Python3, 33/190 (don't ask me about the part 2 fail). Code on GitHub

  • Advent-of-Code

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

  • aoc-2022-deno

    Solutions to Advent of Code 2022 written in TypeScript and running on Deno

    Source

  • adventOfCode2022

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

    Today's seems suspiciously quite "easy", I'm feeling tomo's gonna be harsh. Javascript solution

  • advent-of-code-2022

    AoC 2022 in Kotlin :) (by Avataw)

    Kotlin

  • adventofcode

    Advent of Code 🎄 (by markus-k)

  • advent_c

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

    C, the index handling in findMarker feels a little gross but if that's the worst code I write during AOC2022 I'll be pretty happy. [Github]

  • advent-of-code-2022

  • aoc2022

    Instead of using Itertools::all_unique I wrote my own and gained a huge performance improvement. Part 2 runs in ~25 us on my machine. I would make it even faster since the input doesn't use the whole byte range, but that's ok. The whole code

  • aoc-2022-kotlin

    AOC 2022 in Kotlin!

  • advent-of-code-2022-erlang

    Discontinued Advent of code 2022 - implemented in Erlang

    Erlang - gotta love the ten-line solutions

  • Advent-of-Code

    Rust: code

  • aoc

    Advent of Code public repo (by napolux)

  • AdventOfCode2022

    V

  • AoC-2022

    Python3 using queue

  • advent-of-code

    My personal advent of code repo (by soupglasses)

  • advent-of-code-2022

    ✨ my advent of code 2022 repo ✨🦀 (by ifacodes)

    I love how simple this was in Rust <3 here's my code :3

  • AdventOfCodeHaskell

    Advent of Code in Haskell

    Haskell (likely very suboptimal, but does the job):

  • advent_of_code_2022

    Discontinued My solutions to Advent of Code 2022 https://adventofcode.com/2022 [Moved to: https://github.com/PetchyAL/AoC2022] (by PetchyAL)

    Python, nice and easy one today

  • adventOfCode2022

    Github

  • Advent-of-Code-2022

  • aoc2022

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

  • aoc

    Advent of Code (by yannjor)

    Rust

  • advent-of-code

    Advent of Code solutions (by sonu27)

  • boline

    A low level preprocessor meta programming library.

  • AdventOfCode2022

    Optimised dotnet solutions for Advent Of Code 2022 (by Timmoth)

    Source

  • advent_of_code_2022

  • AoC_2022

    Advent of Code 2022 (by a-ghigi)

  • aoc2022

    I coded it up in C++ here. Hot runs take ~5 µs on a Core i9-12900K (both parts, including I/O).

  • adventofcode

    adventofcode.com solutions (by linl33)

  • AoC2022

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

  • advent-of-code

  • advent_of_code_2022

    Advent of code 2022 (by HendrikPetertje)

  • AdventOfCode

    My journey in Advent of Code (by KingNexu)

    Tried my best, i think the solution is quite nice :)

  • adventofcode.sh

    Advent of Code 2020 and 2015, done in bash. Because why not?

    I have completed years 2015 and 2020 in bash. Gave up halfway through last year, might do that one day. https://github.com/einarjon/adventofcode.sh

  • advent-of-code

    adventofcode.com (by ike-gg)

    JavaScript / NodeJS / TypeScript solution

  • adventofrust

    advent of code in rust

    rust with windows and basic loops

  • Advent-of-code-2022-golang

    2022 golang solutions of Advent Of Code

    Go solutions here

  • advent_of_code

    advent of code 2022 (by Zdrenka)

    TypeScript

  • advents-of-code

    🎄🎁 Solutions for the yearly advent of code challenges

  • advent-of-code-2022

    Advent of Code solutions. (by tobyaw)

  • adventofcode

    Advent of Code in Elixir (by cybrox)

  • advent-of-code-2022

    🎄 Advent of Code 2022 - It's the Most Wonderful Time of the Year... (by MrRobb)

    Code: https://github.com/MrRobb/advent-of-code-2022/blob/main/src/day06.rs

  • adventofcode

    Advent of code solutions (by mathsaey)

  • AdventOfCode2022

    Advent Of Code 2022 (by mhb164)

    C# Repository (3 Solutions)

  • AdventOfCode2022

    Part 2 is just a longer regexp, see my solution on GitHub

  • Day 6 in Go: https://github.com/nicl/advent-of-code-2022/blob/main/day6/main.go

  • aoc

    One repository for all my Advent of Code solutions. (by Andrew-Foote)

  • aoc2022

    Discontinued Advent of Code 2022 (by ednl)

    Without sets in C, I resorted to comparing the characters in every window, but skipping ahead where possible. So, if the last 2 chars of the window are the same, you can immediately slide the window along by its size-1, or else if there is a duplicate in the last 3 chars, slide by size-2, etc. etc. I also made sure to start the search for the 14-char header after the one of length 4. Run time is 1 ms on a Raspberry Pi 4. Code at https://github.com/ednl/aoc2022/blob/main/06.c or the relevant bits:

  • advent-of-code

    Advent of Code solutions (by mkeeter)

    The rest of the code is here

  • aoc-2022

    Code in rust for both parts:

  • AoC2022

  • advent-of-code-2022

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

    This would've been much much nicer if count(distinct char) was supported in the window function, oh well. Source here

  • advent-of-golf-2022

    Golfed code for Advent of Code 2022

    I did Bash for day 2 because it was easier to setup as a language beginning with B over B or Bracmat or Befunge or something :) https://github.com/Starwort/advent-of-golf-2022/blob/master/bash/day2.sh

  • AdventOfCode

    You can use indexOfFirst: https://github.com/PaulWoitaschek/AdventOfCode/blob/main/src/main/kotlin/de/woitaschek/aoc/year2022/Day6.kt

  • aoc

    🎄Advent Of Code🎄 (by prichrd)

    END { print(i); } ``` github

  • AoC2022

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

  • advent-of-code

    Code for https://adventofcode.com/. (by RoyArne)

    Common Lisp

  • aoc-2022

    Advent of Code 2022 (by mintopia)

    So using my PHP Advent of Code Framework I started last year to take care of some boiler plate and reading of files, etc. The overall approach I'm taking is to make it handle the raw input from the AoC puzzles and to be maintainable/easy to follow and read.

  • aoc2022

  • RegExr

    RegExr is a HTML/JS based tool for creating, testing, and learning about Regular Expressions.

    Regular expression (using https://regexr.com )

  • AdventOfCode2022

    Advent of code 2022 solutions (by davidshomelab)

    C#

  • advent-of-code-2022

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

    Rust🦀 solution with no HashMap/Set or any bit counting ¯\(ツ)/¯ github (raw)

  • aoc2022

  • aoc2022

    Advent of Code in Elixir, Julia, Python and Rust #aoc #adventofcode (by Lakret)

    Livebook Version

  • adventOfCode2022

  • aoc2022

    Advent of Code, this time in Deno (by danvk)

  • AoC

    Advent of Code (by Marterich)

  • advent-of-code

  • advent-of-code

    My Advent of Code answers (by tcsullivan)

    Annotated code for both parts

  • advent-of-code

    Advent of Code puzzles (by KT421)

  • fastbasic

    FastBasic - Fast BASIC interpreter for the Atari 8-bit computers

    Atari FastBasic

  • advent_of_code_22

    Discontinued [Moved to: https://github.com/1adept/advent_of_code] (by 1adept)

    Code on Github

  • Advent_of_Code

    Basically me trying to compete at AoC using Java :) (by Alexander-Levochkin)

    This on Github My solutions on Github

  • AOC2022

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

    Haskell, 15 ms. Probably my shortest AoC solution ever.

  • AOC2022

    Advent of Code 2022 (by Rakicy)

    Python 3: Code

  • AdventOfCode2022

  • aoc

    Advent of Code solutions (by sjmulder)

    My original solution checked every character against every other character, which performed perfectly fine even for 14 chars, but it felt wrong.

  • 2022AdventofCode

    Python

  • adventofcode

    Advent of code in rust (by Japanuspus)

    I ended up seeing if I could save time by using an array and tracking the set in a mutable way. It worked but much less concise: https://github.com/Japanuspus/adventofcode/blob/master/2022/day06/src/main.rs

  • AoC-2022-in-Bash

    Advent Of Code 2022 in bash

    My solution in readable bash script. I solved part 1 in a simpler way, but after reading part 2, I created this universal solution for both parts. It's slow but it works. All my solutions are on my Github.

  • AoC2022

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

  • advent-of-code-day-6

    Discontinued My solution to Day 6 of Advent of Code. (by Veluthil)

    Python

  • advent-of-code

    My solutions for adventofcode.com (by mdwhatcott)

  • go-collections

    Useful (generic) collection types for Go projects. (by mdwhatcott)

  • advent_of_code_2022

  • advent-of-code

  • adventofcode2022

    Solution here

  • aoc

    advent of code (by erik-adelbert)

    My solution grows a sliding window over the input while scanning it. At any point, it ensures this window to be the largest possible with no repeating symbols. The underlying algorithm is:

  • advent-of-code

  • advent-code

    Solutions for Advent of Code (by colematt)

    Python 3 using more_itertools.sliding_window and more_itertools.all_unique. No set building, no nested for loops. https://github.com/colematt/advent-code/blob/main/2022/p6.py the two key functions are below:

  • Advent_of_code

    My solutions to advent of code (by SemanticDolphin)

    Day 6 ``` data = open("data.txt").read()

  • advent-of-code

    Solutions for adventofcode.com (by alexandru-dinu)

  • aoc2022

    Advent of Code 2022 in TypeScript (by minidmnv)

  • Advent-of-Code

    Swift. containsOnlyUniqueElements is not in the standard library; it relies on this Set initializer.

  • Advent-of-Code

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

  • aoc

  • advent_of_code

    GitHub Day6

  • Misc-DSA-Practice

    { Python solution working on indices }

  • aoc2022lisp

  • Advent-Of-Code

    stuff relating to advent of code exercises. (by argentcorvid)

    github

  • Advent-of-Code-2022

    I used Rust Part 1 Part 2 These work almost the same as the two parts are very similar. I go through every character in the given string and store the last 4/14 chars in an array. If the array contains only unique chars then I break and "return" the index of the current position.

  • adventOfCode2022

    Advent of Code challenges (by hovez701)

  • aoc2022

    Advent of code 2022 (by MarcusDunn)

  • Kotlin: Code on my Gitlab

  • AdventOfCode

    Advent of Code 2022 | Rust (by emiltang)

  • advent-of-code-2022

    Joel Eisner's completed TypeScript code challenges for "Advent of Code" 2022 (by joeleisner)

  • AoC2022

    My advent of code solutions coded in Java (by PanJohnny)

    GitHub: https://github.com/PanJohnny/AoC2022/blob/master/src/main/java/com/panjohnny/advent/days/Day6.java

  • advent-of-code-2022

    My advent of code solutions https://adventofcode.com/2022 (by FlakM)

    part 1 and part 2 also added some cool benchmarking using cryterion to track the execution times.

  • AdventOfCode-Day6-TuningTrouble

    C# .NET Core console app that solves the puzzles for AdventOfCode Day 6 - TuningTrouble

    C# Solution using LINQ - repo ``` Console.WriteLine("Scanning signal...");

  • AdventOfCode

    Advent of code (by ZerLock)

    Github

  • advent-2022

    Advent of code 2022 in Novah (by stackoverflow)

    Day 6 github

  • AoC2022

    adventofcode.com (by Ily3s)

    C .... This is calm, too calm .... You know what's coming now, prepare for the storm !

  • AdventOfCode

    Very happy with my solution which boils down to:

  • Advent-of-Code

    code snippets for the Advent of code (by BeardyMike)

    GitHub

  • advent-2022

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

    Full code is here: https://github.com/whiteand/advent-2022/blob/main/src/y22d6.rs

  • advent_of_code

    https://adventofcode.com (by hannesschaletzky)

    Managed to make an extension function finding all duplicates in an array:

  • aoc-2022

    I just turned the string into a vector of chars with `.chars().collect()` https://github.com/DAlperin/aoc-2022/blob/main/day-6/src/main.rs

  • adventofcode2022

    The repo for my solutions to the 2022 advent of code (F# and C#) (by Nicolas-Ding)

    Still learning F#, quite proud of today's solution: https://github.com/Nicolas-Ding/adventofcode2022/blob/main/Day06-FS/Program.fs

  • AdventOfCode2022

    Python solution to part 1 and 2

  • advent-of-code-2022

    I wrote up a tutorial for it here: https://github.com/maxrothman/advent-of-code-2022/blob/main/apl-aoc/day6/day6.ipynb. If you're interested in learning more about these funny squiggles, I also solved some of the other days in there as well. Check it out!

  • CodingExercises

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

    Python - 9 LOC. Quite a pleasing solution...

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

  • swift-algorithms

    Commonly used sequence and collection algorithms for Swift

    #!/usr/bin/env swift sh import Algorithms // https://github.com/apple/swift-algorithms struct StandardInput: Sequence, IteratorProtocol { func next() -> String? { return readLine() } } func markerEnd(for signal: String, markerLength: Int) -> Int { return Array(signal.windows(ofCount: markerLength)) .firstIndex { Set($0).count == markerLength }! + markerLength } let signals = StandardInput().compactMap { $0 } let part1 = signals.map { markerEnd(for: $0, markerLength: 4)}.reduce(0, +) let part2 = signals.map { markerEnd(for: $0, markerLength: 14)}.reduce(0, +) print("part 1 : \(part1)") print("part 2 : \(part2)")

  • Advent-Of-Code-2022

    Typescript there : https://github.com/Gabattal/Advent-Of-Code-2022/blob/main/day06/index.ts

  • advent_of_code_2022

    Solutions to Advent of Code 2022 (by solidiquis)

    Rust

  • AoC

    My personal Advent of Code implementations (by YAWNICK)

    Used a 32bit Integer as a set, otherwise it would have probably been way more expensive. Glad that I've done this before on Day 6 in 2020. As a result these were the fastest solves so far.

  • advent-of-code

    original BS file

  • advent-of-code-2022

    Advent of code 2022 Solutions (by abhiy13)

    Concise solution in Rust using some bit tricks.

  • advent-of-code-2022

  • adventofcode2022

    🎄 Advent of Code 2022 solutions in Kotlin 🎄 (by Dantaro)

    Kotlin: Part 1 and 2

  • advent-of-code

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

    Full thing on github; here's the interesting part:

  • advent

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

  • AdventofCode_Day6_Part1

    Part 1 of Day 6 of Advent of Code Challenge - https://adventofcode.com/2022/day/6

    Part 1

  • advent-of-code-ts

    My solutions to AoC puzzles in Typescript (by rogisolorzano)

  • a2tools

    Stuff I write for my Apple //c

    Tried a new thing, first uploaded data to disk (errrr I mean floppy) using a stupid read first write after ingester (that doesn't work with more than 6kB data).

  • adventofcode

    Python 3.11 solution quite simple, basic list manipulation

  • aoc2022

  • aoc2022

    My Advent of Code 2022 solutions! (by SourishS17)

  • aoc-22-ts

  • advent-of-code

    My advent of code solutions (by osipxd)

    Kotlin solution using sliding window ⏱ O(N), 💾 O(M), where N - number of chars in input, M - window size

  • 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