With Day 1 in the books, hopefully you’re starting to get into the swing of things. I know that I definitely didn’t spend a few hours fiddling with my AoC tooling yesterday. That would be obsessive and overkill. 😐
The Puzzle
Today’s puzzle involves passwords and security policies. Each listing has a password alongside the security policy in place for it, but some passwords aren’t compliant! It’s our job to analyze the passwords and sort things out.
The Leaderboards
As always, this is the spot where I’ll plug any leaderboard codes shared from the community.
Ryan's Leaderboard: 224198-25048a19
If you want to generate your own leaderboard and signal boost it a little bit, send it to me either in a DEV message or in a comment on one of these posts and I'll add it to the list above.
Yesterday’s Languages
Updated 03:05PM 12/12/2020 PST.
Language | Count |
---|---|
Python | 5 |
C | 2 |
Rust | 2 |
JavaScript | 2 |
C# | 1 |
Raku | 1 |
PHP | 1 |
Scratch | 1 |
Elixir | 1 |
Haskell | 1 |
COBOL | 1 |
Ruby | 1 |
Merry Coding!
Top comments (23)
COBOL (second one is on my GitHub):
IMO you’re a real hipster using Cobol! Great job! :)
Thanks! Gotta stay busy in the pandemic somehow. :)
May I ask you - have you used Cobol before? Or it's just your pandemic-advent challenge? :D
I started in the spring and wrote a couple things like FizzBuzz: github.com/GaloisGirl/Coding/tree/...
Then I had a bit of a life, and now I'm having a second wave of COBOL.
Rust solution for Day 2. Felt happy and clever at the inclusion of the XOR for part 2.
Full repo on Github.
Rust looks intriguing! I hope that one day I will find time to learn this language. :D
Hi guys!
The second day was awesome. I've really enjoyed the task. :) I'm still learning Elixir, but I think my solution was not that bad. :) Of course, I did it in Elixir.
This time I've split the day into two modules - one per part. The full solution is on my GitHub repository.
The first part of the day looks like:
The second part of the day looks like:
Ooh boy it's a little early in the season to already be stumped by an off-by-one bug. 1-BASED INDICES RYAN! 1-BASED! IT'S RIGHT THERE IN THE PROMPT!
Also, I started a little parsing module to help me with some of the repetitive tedia.
Day2.h:
Day2.c:
parsing.h:
parsing.c:
Also a little tooling to help generate the daily files:
bin/newday:
Hey Y'all!! This time, I actually brought the input.txt file in as it was, and again, made a ruby solution that im sure could be a bit more refactored, but i got to play with regex! so that was fun...
Here's my full code, and here's a snippet of what i did to solve it:
What I came up with in Ruby:
And for comparison, here is the inlined version:
I started learning Rust and immediately felt satisfied coding in it, and Advent of Code seemed like the perfect place to get better at rust. Probably not the best or cleanest way to do it (didn't use XOR), but here's day 2 in Rust:
Short and hopefully non-cryptic python. Ideas to improve?
SQL (0 lines of code huehue)
Get this table naming 'day2'
2.1. Solution
2.2. Solution
Javascript solution: