In [1]:
from pathlib import Path
import itertools
from collections import Counter
from collections import defaultdict
from pprint import pprint
import re
from datetime import datetime
import numpy as np
import functools
from copy import copy, deepcopy
from collections import namedtuple

--- Day 4: Secure Container ---

You arrive at the Venus fuel depot only to discover it's protected by a password. The Elves had written the password on a sticky note, but someone threw it out.

However, they do remember a few key facts about the password:

It is a six-digit number.
The value is within the range given in your puzzle input.
Two adjacent digits are the same (like 22 in 122345).
Going from left to right, the digits never decrease; they only ever increase or stay the same (like 111123 or 135679).

Other than the range rule, the following are true:

111111 meets these criteria (double 11, never decreases).
223450 does not meet these criteria (decreasing pair of digits 50).
123789 does not meet these criteria (no double).

How many different passwords within the range given in your puzzle input meet these criteria?


In [2]:
data_in = '272091-815432'

In [3]:
def criteria(word):
    meets = True
    if '11' in word or \
    '22' in word or \
    '33' in word or \
    '44' in word or \
    '55' in word or \
    '66' in word or \
    '77' in word or \
    '88' in word or \
    '99' in word:
        last_num = None
        for x in word:
            if last_num is not None:
                if int(x) < last_num:
                    meets = False
            last_num = int(x)
    else:
        meets = False
        
    return meets

In [4]:
criteria('11111'), criteria('223450'), criteria('123789'),


Out[4]:
(True, False, False)

In [5]:
count = 0
for i in range(*map(int, data_in.split('-'))):
    if criteria(str(i)):
        count += 1
print(count)


931

--- Part Two ---

An Elf just remembered one more important detail: the two adjacent matching digits are not part of a larger group of matching digits.

Given this additional criterion, but still ignoring the range rule, the following are now true:

112233 meets these criteria because the digits never decrease and all repeated digits are exactly two digits long.
123444 no longer meets the criteria (the repeated 44 is part of a larger group of 444).
111122 meets the criteria (even though 1 is repeated more than twice, it still contains a double 22).

How many different passwords within the range given in your puzzle input meet all of the criteria?


In [6]:
def criteria_2(word):
    meets = True
    this_digit_ok = [False]*10
    
    for dig in '1234567890':
        if dig*2 in word:
            this_digit_ok[int(dig)] = True
        for length in range(3,7):
            if dig*length in word:
                this_digit_ok[int(dig)] = False

    if any(this_digit_ok):
        last_num = None
        for x in word:
            if last_num is not None:
                if int(x) < last_num:
                    meets = False
            last_num = int(x)
    else:
        return False
    return meets

In [7]:
criteria_2('112233'), criteria_2('123444'), criteria_2('111122'),


Out[7]:
(True, False, True)

In [8]:
count = 0
for i in range(*map(int, data_in.split('-'))):
    if criteria_2(str(i)):
        count += 1
print(count)


609