Advent Of Code 2020 Day 2 Python Solution

Password Philosophy

Part 1

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

Solution

import re

entries = []
line_counter = 0
correct_pass_count = 0

with open('day_2/input_list.txt', 'r') as f:
    for line in f:
        entries.append(line)

for entry in entries:
    linet = entries[line_counter]
    
    found_letters_count = 0

    split_linet = re.findall(r"[\w']+", linet)
    x1 = int(split_linet[0])
    x2 = int(split_linet[1])
    target_letter = str(split_linet[2])
    password = str(split_linet[3])

    for character in password:
        if character == target_letter:
            found_letters_count += 1           
    if x1 <= found_letters_count <= x2:
        correct_pass_count += 1
    line_counter += 1   

print(f'Found {correct_pass_count} correct password(s) matching the policy.')

Part 2

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.

Solve the problem, for the questions:

How many passwords are valid according to the new interpretation of the policies?

Your puzzle answer was 451.

Solution

import re


entries = []
line_counter = 0
correct_pass_count = 0

with open('day_2/input_list.txt', 'r') as f:
    for line in f:
        entries.append(line)

for entry in entries:
    linet = entries[line_counter]
    found_letters_count = 0

    split_linet = re.findall(r"[\w']+", linet)
    x1 = int(split_linet[0]) 
    x2 = int(split_linet[1]) 
    target_letter = str(split_linet[2])
    password = str(split_linet[3])

    # Enumerate function 'positions' starts from 0 down below, x1 and x2 needs to be shifted -1 to accomodate for it
    x1 -= 1
    x2 -= 1

    positions = []
    positions = [pos for pos, char in enumerate(password) if char == target_letter]
 
    positives = 0
    for position in positions:

        if int(position) == x1:
            positives += 1
        if int(position) == x2:
            positives += 1

    if positives == 1:
        correct_pass_count += 1

    line_counter += 1  

print(f'Found {correct_pass_count} correct password(s) matching the policy.')

Input Data

Hosted on GitHub.