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

Part One

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

Your puzzle input is 356261-846303.

minVal <- 356261
maxVal <- 846303

Build a checker

We’ll examine the digits intdividually as characters.

int_to_char_vect <- function(num){
    num %>% 
        as.character() %>% 
        str_split(pattern = "") %>% 
        .[[1]]
}

And then we’ll build the conditions we care about.

positive_monotone <- function(num) {
    
    for(i in 2:length(num)) {
        if(num[i] < num[i-1]) return(FALSE)
    }
    
    TRUE
}
repeated_digit <- function(num) {
    
    for(i in 2:length(num)) {
        if(num[i] == num[i-1]) return(TRUE)
    }
    
    FALSE
}
number_checker <- function(num){
    
    num %<>% int_to_char_vect()
    
    if(positive_monotone(num)) {
        if(repeated_digit(num)) return(TRUE)
    } 
    
    FALSE
    
}

Now we’ll build something to check all the numbers in the given range

find_all_candidates <- function(minVal, maxVal) {
    
    candidates <- numeric()
    
    for (i in minVal:maxVal) {
        if(number_checker(i)) {
            candidates %<>% append(i)
        }
    }
    
    candidates
    
}

And now we’ll run our program

results <- find_all_candidates(minVal, maxVal)
results %>% length()
## [1] 544

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?

Change Repeated Digit Condition

All we have to do is have a digit repeated exactly one time. The monotone checker will make sure it’s near a friend.

repeated_digit <- function(num) {
    
    repeats <- rep(0,9)
    
    for(i in 2:length(num)) {
        
        #increment the key that 
        if(num[i] == num[i-1]) {
            tmp <- num[i] %>% as.integer()
            repeats[tmp] <- repeats[tmp] + 1
        }
    }
    
    if(1 %in% repeats) return(TRUE)
    
    FALSE
}

Find all candidates

results <- find_all_candidates(minVal, maxVal)
results %>% length()
## [1] 334

This should, uh, let us land on Venus… or something.