23
π¦ - 2023 DAY 2 SOLUTIONS -π¦
(programming.dev)
An unofficial home for the advent of code community on programming.dev! Other challenges are also welcome!
Advent of Code is an annual Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like.
Everybody Codes is another collection of programming puzzles with seasonal events.
Solution Threads
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 |
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
console.log('Hello World')
Ruby
https://github.com/snowe2010/advent-of-code/blob/master/ruby_aoc/2023/day02/day02.rb
Second part was soooo much easier today than yesterday. Helps I solved it exactly how he wanted you to solve it I think.
I'm going to work on some code golf now.
Golfed P2 down to 133 characters:
That's a nice golf! Clever use of the hash and nice compact reduce. I got my C both-parts solution down to 210 but it's not half as nice.
Thanks! Your C solution includes main, whereas I do some stuff to parse the lines before hand. I think it would only be 1 extra character if I wrote it to parse the input manually, but I just care for ease of use with these AoC problems so I don't like counting that, makes it harder to read for me lol. Your solution is really inventive. I was looking for something like that, but didn't ever get to your conclusion. I wonder if that would be longer in my solution or shorter π€