Advent of Code 2016

--- Day 20: Firewall Rules --- You'd like to set up a small hidden computer here so you can use it to get back into the network later. However, the corporate firewall only allows communication with certain external IP addresses. You've retrieved the list of blocked IPs from the firewall, but the list seems to be messy and poorly maintained, and it's not clear which IPs are allowed. Also, rather than being written in dot-decimal notation, they are written as plain 32-bit integers, which can have any value from 0 through 4294967295, inclusive. For example, suppose only the values 0 through 9 were valid, and that you retrieved the following blacklist: 5-8 0-2 4-7 The blacklist specifies ranges of IPs (inclusive of both the start and end value) that are not allowed. Then, the only IPs that this firewall allows are 3 and 9, since those are the only numbers not in any range. Given the list of blocked IPs you retrieved from the firewall (your puzzle input), what is the lowest-valued IP that is not blocked?

In [1]:
data = [line.strip() for line in open('data/day_20.txt', 'r')]

In [2]:
# First, sort the ip ranges
data = sorted(data, key=lambda x: int(x.split('-')[0]))

In [3]:
def find_lowest_ip(data):
    min_ip = 0

    for i in data:
        start, end = i.split('-')
        if int(start) <= min_ip <= int(end):
            min_ip = int(end) + 1
        elif int(start) > min_ip:
            break

    return min_ip

In [4]:
find_lowest_ip(data)


Out[4]:
17348574
--- Part Two --- How many IPs are allowed by the blacklist?

In [5]:
def find_all_ip(data):
    min_ip = 0
    ips = 0

    for i in data:
        start, end = i.split('-')
        if int(start) <= min_ip <= int(end):
            min_ip = int(end) + 1
        elif int(start) > min_ip:
            ips += int(start) - min_ip
            min_ip = int(end) + 1

    return ips

In [6]:
find_all_ip(data)


Out[6]:
104