""" day_00_00.py """

# usage: python3 day_00_00.py


def get(filename):
    """ contents of filename """
    with open(filename, 'r', encoding='utf-8') as infile:
        data = infile.read()

    return data


def test(data, given_solution):
    """ testing """
    assert solve(data) == given_solution


def solve(data):
    """ solve the puzzle """
    return 'got something' if data else 'got nothing'


if __name__ == '__main__':
    test(get('example'), 'got nothing')

    puzzle = get('input')
    solution = solve(puzzle)

    print(solution)
