This commit is contained in:
akp 2020-12-02 16:44:06 +00:00
parent 551f1c37ca
commit 349b1279c8
No known key found for this signature in database
GPG key ID: D3E7EAA31B39637E
4 changed files with 1131 additions and 0 deletions

View file

@ -0,0 +1,61 @@
# Day 2: Password Philosophy
<details><summary>Challenge description</summary>
## Part One
Your flight departs in a few days from the coastal airport; the easiest way down to the coast from here is via toboggan.
The shopkeeper at the North Pole Toboggan Rental Shop is having a bad day. "Something's wrong with our computers; we can't log in!" You ask if you can take a look.
Their password database seems to be a little corrupted: some of the passwords wouldn't have been allowed by the Official Toboggan Corporate Policy that was in effect when they were chosen.
To try to debug the problem, they have created a list (your puzzle input) of passwords (according to the corrupted database) and the corporate policy when that password was set.
For example, suppose you have the following list:
```
1-3 a: abcde
1-3 b: cdefg
2-9 c: ccccccccc
```
Each line gives the password policy and then the password. The password policy indicates the lowest and highest number of times a given letter must appear for the password to be valid. For example, `1-3 a` means that the password must contain `a` at least `1` time and at most `3` times.
In the above example, 2 passwords are valid. The middle password, `cdefg`, is not; it contains no instances of `b`, but needs at least `1`. The first and third passwords are valid: they contain one `a` or nine `c`, both within the limits of their respective policies.
How many passwords are valid according to their policies?
Your puzzle answer was `500`.
## Part Two
While it appears you validated the passwords correctly, they don't seem to be what the Official Toboggan Corporate Authentication System is expecting.
The shopkeeper suddenly realizes that he just accidentally explained the password policy rules from his old job at the sled rental place down the street! The Official Toboggan Corporate Policy actually works a little differently.
Each policy actually describes two positions in the password, where 1 means the first character, 2 means the second character, and so on. (Be careful; Toboggan Corporate Policies have no concept of "index zero"!) Exactly one of these positions must contain the given letter. Other occurrences of the letter are irrelevant for the purposes of policy enforcement.
Given the same example list from above:
* `1-3 a`: `abcde` is valid: position `1` contains `a` and position `3` does not.
* `1-3 b`: `cdefg` is invalid: neither position `1` nor position `3` contains `b`.
* `2-9 c`: `ccccccccc` is invalid: both position `2` and position `9` contain `c`.
How many passwords are valid according to the new interpretation of the policies?
Your puzzle answer was `313`.
</details>
<details><summary>Script output</summary>
```
python .\partOne.py
There are 500 valid passwords.
python .\partTwo.py
There are 313 valid passwords.
```
</details>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,36 @@
import re
input_string = open("input.txt").read().strip().split("\n")
class Password:
plaintext: str
target_letter: str
min_repeats: int
max_repeats: int
def __init__(self, plaintext:str, target_letter:str, min_repeats:int, max_repeats:int) -> None:
self.plaintext = plaintext
self.target_letter = target_letter
self.min_repeats = min_repeats
self.max_repeats = max_repeats
parser_regex = r"(\d+)-(\d+) ([a-z]): (.+)"
passwords = []
for line in input_string:
m = re.match(parser_regex, line)
passwords.append(Password(m.group(4), m.group(3), int(m.group(1)), int(m.group(2))))
num_valid_passwords = 0
for password in passwords:
target_letter_count = 0
for char in password.plaintext:
if char == password.target_letter:
target_letter_count += 1
if password.min_repeats <= target_letter_count <= password.max_repeats:
num_valid_passwords += 1
print(f"There are {num_valid_passwords} valid passwords.")

View file

@ -0,0 +1,34 @@
import re
input_string = open("input.txt").read().strip().split("\n")
class Password:
plaintext: str
target_letter: str
position_one: int
position_two: int
def __init__(self, plaintext:str, target_letter:str, position_one:int, position_two:int) -> None:
self.plaintext = plaintext
self.target_letter = target_letter
self.position_one = position_one - 1 # No concept of index zero... eurgh
self.position_two = position_two - 1
parser_regex = r"(\d+)-(\d+) ([a-z]): (.+)"
passwords = []
for line in input_string:
m = re.match(parser_regex, line)
passwords.append(Password(m.group(4), m.group(3), int(m.group(1)), int(m.group(2))))
num_valid_passwords = 0
for password in passwords:
position_one_matches = password.plaintext[password.position_one] == password.target_letter
position_two_matches = password.plaintext[password.position_two] == password.target_letter
if position_one_matches ^ position_two_matches:
num_valid_passwords += 1
print(f"There are {num_valid_passwords} valid passwords.")