-
-
-
# Advent of Code 2021: Day 8 | Sam Adams
Day 8 was a unique puzzle, and I rose to its occasion by writing some code unfit for human eyes. Read at your peril! ```clojure (ns aoc.2021.day.08 (:require …
-
# A TypeScript Perspective on Go: the 2021 Advent of Code
Effective TypeScript: A TypeScript Perspective on Go: the 2021 Advent of Code
[https://effectivetypescript.com/2022/02/06/advent-of-code-202…
-
I'm trying to implement Advent of Code in ABAP and use also the transpiler to run it in Node.JS. But already with part 2 of day 1 I run into an issue. My implementation [zcl_advent2020_day01_gw.clas.a…
-
https://github.com/becnelli/advent-of-code-2021/blob/e312ee70c99029ff890e87e628f6c1dc04104643/solutions/day_04.py#L76
I'm just trolling by making an issue, of course, but what if two or more boards…
-
## Problem
While working on advent of code 2021 I've noticed there is a quite a bit of boilerplate with both `.iter()` and `.into(.collect)`. Essentially converting a container too and from an iterat…
-
Hello,
I’m considering trying to learn Rust by using it to solve 2022 Advent of Code Puzzles.
Your 2021 solutions seem very efficient!
curious if it’s possible (faster) to copy/paste the puzzle…
-
https://willemserruys.com/2021/10/23/Advent-Of-Code-2019_02_Framework.html
To satisfy the requirements for my AoC target (see previous post), I started looking into Yew, a front-end framework simil…
wserr updated
3 years ago
-
### What it does
I was helping a friend learn Rust by going through Advent of Code 2020, and they needed to split a `&str` into a `Vec`. They found the `str::split` method, and wrote `string.split(""…