From 22876cd65a6380139d3c8b439b898b9329aa989b Mon Sep 17 00:00:00 2001 From: tebarius Date: Wed, 13 Dec 2023 15:47:19 +0100 Subject: [PATCH] 13-grrr --- 13/13-1.py | 70 +++ 13/input | 1347 +++++++++++++++++++++++++++++++++++++++++++++++++++ 13/input-ex | 48 ++ 3 files changed, 1465 insertions(+) create mode 100644 13/13-1.py create mode 100644 13/input create mode 100644 13/input-ex diff --git a/13/13-1.py b/13/13-1.py new file mode 100644 index 0000000..7659191 --- /dev/null +++ b/13/13-1.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +data = [] + +# parse input +input_file = open("input-ex", "r") +pattern = [] +for line in input_file: + line = line.strip() + if line == "": + data.append(pattern) + pattern = [] + else: + pattern.append(line) +data.append(pattern) +input_file.close() +''' +for i in range(len(data)): + for _ in data[i]: + print(_) + print("================") +''' + +def find_vertikal_mirror(matrix): + for s in range(1, len(matrix[0])): + is_mirror = True + for z in matrix: + if s <= len(z) / 2: + p1 = z[:s] + p2 = z[s:] + p2 = p2[::-1] + p2 = p2[:s] + print("1: ",s,p1,"-",p2) + else: + p2 = z[s:] + p1 = z[:s] + p1 = p1[::-1] + p1 = p1[:len(p2)] + print("2: ",s,p1,p2) + if p1 != p2: + is_mirror = False + if is_mirror: + return s + return 0 + + +def find_horizontal_mirror(matrix): + new_matrix = [] + for j in range(len(matrix[0])): + new_matrix.append("".join([matrix[k][j] for k in range(len(matrix))])) + for n in new_matrix: + print(n) + print("_____________________") + return find_vertikal_mirror(new_matrix) + + +solution = 0 +for m in data: + print(m) + for mn in m: + print(mn) + vert = find_vertikal_mirror(m) + horz = find_horizontal_mirror(m) + print(vert, horz) + if vert == 0: + solution += 100 * find_horizontal_mirror(m) + else: + solution += vert + +print("Lösung:", solution) diff --git a/13/input b/13/input new file mode 100644 index 0000000..b279a34 --- /dev/null +++ b/13/input @@ -0,0 +1,1347 @@ +#.#.##..#.#.. +.##.##...#.## +.######.....# +#....#..###.. +#########.#.. +...##.#.##... +#..#.###.#### +#..#.###.#### +...##.#.##... + +###.###..#....#.. +#....#.#.#.#####. +#.#....#.....###. +.###.##..######.# +.....#....#.##.## +.....#....#.##.## +.###.##..######.# +#.#....#.....###. +##...#.#.#.#####. +###.###..#....#.. +....#...#.#...... +..##.##.#.###.#.. +..##.##.#.###.#.. + +#..##...# +#..##.#.# +.....#### +.....##.. +.##.#..## +#..##.#.. +####..##. +....##..# +#..#.#### +#..#.###. +#..###### + +###.####.#.## +..########... +###......#### +...######.... +.#.##..##.#.. +.##.####.##.. +.#.#....#.#.. +###..##..#### +###..##..#### +#.##.##.##.## +..########... +##........### +...######.... + +##..###..#.#### +.........#.##.# +##...#...##..## +##..##.##..##.. +##.###.##.####. +......##..####. +###.###.#...... +...#..###..##.. +....#..######## +..##.###.#.##.# +###.###..#.##.# +##.##.###.#..#. +...#...##...... +##.......#.##.# +..#####...####. +...##.#...#..#. +##.####.####### + +...####...### +####..####.#. +..........#.. +..#....#..### +####..####.## +..######..### +##......####. +.#.#..#.#.#.# +...#..#...#.. + +##..#.##..### +....##...#.## +##.....##..## +...#..##..### +####..##..#.. +..##..##.#.#. +...##.#...### + +#.##..#.##. +###.#....## +.#.##..#### +.#.#....... +#..#..##..# +#..#..##..# +.#.#....... +.#.##..#### +###.#....## +#.##..#.##. +.#.####..#. +#.#####.### +#.#####.### +.#.####..#. +#.##..#.#.. + +.#..#..#....... +#......###..##. +..###.#...#..#. +#.#.#...##.#..# +######..#.##.#. +###...#..###.#. +###...#..###... +######..#.##.#. +#.#.#...##.#..# +..###.#...#..#. +#......###..##. +.#..#..#....... +.#..#..#....... + +.##..##...#.... +.##.##.#....... +.#.#..#.###.##. +.###.#........# +#.####..##.##.# +...#......##.#. +#....###.#.###. +#.....##.#.###. +...#......##.#. +#.####..##.##.# +.###.#........# +.#.#..#.###.##. +.##.##.#....... +.##..##...#.... +...##..#.###..# +#.#.##.####..## +#.#.##.####..## + +#..###....###..## +.##.#......#.##.. +.#.##.#..#.####.. +####.#....#.##### +##..##....##..### +#..#.######.#..## +##.###.##.###.### +.##..#....#..##.. +.###.######.###.. +###..#.##.#..#### +##.####..####.### + +#.##..##... +.##..#.#..# +.##..#.#.## +#.##..##... +#..#####.## +....#.##.## +#.##.##..## +#.#..##.### +....#....## +##.#.#..##. +..#.#....## +.##..###### +##..#.#.##. +##..#.#.##. +.##..###### +..#.#....## +##.#.#..##. + +.##.#.#.......# +.####.#.......# +.....#.####.... +.....######.##. +.#....#..#####. +#.###....#..#.. +#..###...#.##.# +####..#..#.#..# +####..#..#.#..# + +####.###..### +#.#.##..##..# +..#.#..#..#.. +.##.##.#..#.# +#####...#.... +.#.....####.. +.#.....####.. + +#.#..#.#... +#.####.#... +#......#.## +..#..#..... +.######.... +########... +##....##### +########..# +#......#.## + +........### +.##.#..#... +#....#.#... +..####.##.. +....#..#... +...#...#.## +.###..###.. +.###..###.. +...#.....## + +..#..#.#. +..#..#.#. +###.....# +#..#.#... +#...##.## +.##.##.## +##.##.##. +.#.#..##. +.###..##. + +#........##.. +##.####.####. +#..####..##.. +.##.....#..#. +.#.####.#..#. +.##.##.##..## +.#......#..#. +#.##..##.##.# +.#......#..#. +#..####..##.. +.########..## +...####...... +###.##.###### +####..####### +##.####.####. +###.##.###### +..######....# + +.......#...## +######..#.... +.##....##..## +###..#.###... +.....#...#.## +#..#..#...... +.##.#.####### +......#.##### +#..###..##... +.....##.#.### +#..#####...## +#..#..###.#.. +.##.#.#...... +#..##.###.... +.##..##..##.. + +..##.#..#..#..#.. +.#.....#.##.##.## +.#.###..##.####.# +##..#.###...##... +..##.#..##..##..# +..###.##.#....... +.#.#..#....####.. +#..##.#####.##.## +....###.####..### +.#..####..#.##.#. +.#..##...#.#..#.# +.#....##.###..### +.#....##.###..### +.#..##...#.#..#.# +.#..####..#.##.#. +....###.####..### +#..##.#####.##.## + +.#####..#.#...... +.....###..#.##### +####.#.#.##.##..# +.#.###...###.#### +.#.##.#.###..#..# +.#####.#.#.#..... +##....##..##..##. +##....##..##..##. +.#####.#.#.#..... +.#.##.#.###..#..# +.#.###...#.#.#### + +#..#.## +####.## +#..##.. +##.##.. +#####.. +.##.#.. +.....## + +#.##.## +##..#.. +..##... +..##... +##..#.. +#.#..## +..##### +.#.#... +#.#.#.. +.####.. +##..... +.#.#### +###..## +##...## +.#..### + +#.####.#...#. +..#..#..###.# +.##..##..#... +#..##..#.#.#. +........#.#.. +...##...###.# +.#.##.#..#..# +##....##.##.. +..####....#.# +########....# +###..###..### +.#....#..#.## +#.####.#..#.# +#.####.#.##.# +.#....#..#.## + +####......### +##..#.###..#. +#........#... +..#.#.###...# +......####### +#..#....###.. +###..#.....#. +###..#.#...#. +#..#....###.. +......####### +..#.#.###...# +#........#... +##..#.###..#. +####......### +####......### + +#..#....#.# +#.#.##..##. +#.#..#.#### +#.#..#.#### +..#.##..##. +#..##...... +###...###.# +###...##### +###...##### +###...###.# +#..##...... +..#.##..##. +#.#..#.#### +#.#..#.#### +#.#.##..##. + +#####.#..####.. +#....####.##.## +#...##......... +.#..#.###.##.## +##.#..#..#..#.. +...##.####..### +#..#.##..####.. +..#.#...#.##.#. +#.##.########## + +#..###.#.#.#.#..# +.##.#.##..####### +#####...##..##..# +#.##.##.##.##.... +#####.#...#...##. +####.#.###.###### +.##..#.###..##### + +####....# +####...#. +#..##.#.. +....#..## +.##...#.. +.##...#.. +....#..## +#..##.#.. +####...#. +####....# +.##..#.#. +.#..###.. +#..#.#... + +.#...##.#..####.# +...##...###.....# +#.#.###..##..#..# +#.#.###..##..#..# +...##...###.....# +.#...##.#..####.# +#.#.####.....#### +.#..#..###.##.##. +#.#.#..#...#.#... +#.#.#..#.#.#.#... +.#..#..###.##.##. +#.#.####.....#### +.#...##.#..####.# + +##.#.####.#...# +##.#.####.#...# +...#..##..#..#. +.#.####.##...#. +..##.####..#### +...#..####.#... +....###..#.##.# +.#..#####.#..#. +.#####..#....## +.#####..#....## +.#..#####.#..#. +....###..#.##.# +...#..######... +..##.####..#### +.#.####.##...#. +...#..##..#..#. +##.#.####.#...# + +#.#.##.#.#..# +.##.##.##.... +.###..###.##. +#.#.##.#.#### +....##....... +####..####..# +###....#.#### + +.###....###.. +#..#....#..## +#..#....#..## +..#.#..#.#... +#.######.#.## +.##.#..#.##.. +.#........#.. +.....##...... +#.##.##.##.## +...######.... +.###.##.###.. +...######.... +#....##....## + +#.####### +#.####### +...###### +.#..#.##. +.##.#..#. +.####..## +...#....# + +###..###. +...####.. +#.###.#.# +#.###.#.# +...####.. +###..###. +#.#.##..# +..#..#.## +..#..#.## +#.#.##..# +###..###. +...#.##.. +#.###.#.# + +#.##..#.....##..# +.#..#.......##..# +.#####..#.#.#.##. +#.####...###..##. +#.####...###..##. +.#####..#.#.#.##. +.#..#.......##..# +#.##..#.....##..# +##.###....####### +..##......###.##. +###.#..##.....##. +#.###......##.##. +##.##.#......#### +..#######...##..# +##..##.##...##.## +##..#.##.##..#..# +.....###..#.##### + +.##...##....#.# +#####.#....#### +#..##..##.###.# +.......#..##..# +#####.#.##..### +.##..#..###.... +.....#.#.##.### +#..####..##.#.# +.##.#....#.###. +.##.#....#.###. +#..####..##.#.# +.....#.#.##.### +.##..#..###.... +#####.#.##..### +.......#.###..# +#..##..##.###.# +#####.#....#### + +..##....#.....# +#.#.##.###.#..# +.###..#..#.##.. +.###..#..#.##.. +#.#.##.#.#.#..# +..##....#.....# +.##.###..#...#. +#####..###.###. +..###...#...#.. +.##.###.#...... +.#.##.#...##### +.#.##.#...##### +.##.###.#...... + +######..##.#.#.## +######..####.#.## +#.##.##.##.#.#..# +#....#...##....#. +##..##...#..##..# +##..###....###.## +#....#.##...##.## +.####.##.#.#..### +.......#.##.##.## +.#..#.#..##.#..## +.#..#..#.##..##.. +..##.....##...### +#.##.#.....###### +#######..#....##. +#.##.##.#...##### +##..###......#.## +#....##..###.##.# + +##..##.##.. +##..##.#... +......#.##. +.#..#.#..## +.#..#.#...# +#######...# +..##..#.### +........##. +.......##.# +.........#. +.........#. +..##...##.# +........##. + +####..####.#....# +..#....#....####. +...####...#.#..#. +.##....##....##.# +#.######.###.##.# +...........#....# +#.#.##.#.###....# +#..#..#..###....# +.#......#.###..## +#.######.###.##.# +.###..###.###..## + +.#..#.# +###..#. +..###.# +..###.# +###..#. +....#.# +#.#.### +....##. +#..#.#. +##.##.# +#....## +.#....# +.#....# + +#.##.#...##...# +#.##.#.#.##...# +##.###....#...# +#..#.##.#....#. +##...##.##.#..# +#....#.#.##..## +.####....##.##. +.####......#... +.####......#... + +.####.#....#..### +#..##...##.###... +.#.##......##.... +#.##.###...##..## +#..#.###.##.....# +#..##.#.##.##.### +..#..#.#..##.#### +.#..#..#.######## +...#..####.#...## +###.....#.##.#.## +.#.#.....#.#.#... +##.....##.....### +..####...##.#.### +..##.#..#.##..#.. +.#.....#...###... +.#.....#...###... +..##.#..#.##..#.. + +#.#.#.. +#.##### +....#.. +####.#. +##..... +..##... +##..... +...#.## +...#.## + +..#.... +...#.#. +###.### +###.### +...#.#. +..#.... +.#.###. +#.....# +#.#...# +.#.###. +..#.... +...#.#. +###.### + +..#..#.#.#...#.## +.#.##..##..#.#..# +..##.##.....#..## +#.##...##...###.. +........#####.... +##.#####.#.#.##.# +.###..#.###.##.## +.###..#.###.#..## +##.#####.#.#.##.# +#..###..#...###.. +#...##....##.##.# +#...##....##.##.# +#..###..#...###.. +##.#####.#.#.##.# +.###..#.###.#..## +.###..#.###.##.## +##.#####.#.#.##.# + +.#.###. +..####. +.###.#. +.###.#. +.#####. +.#.###. +..####. +######. +###..#. +..#.#.. +.##.##. +#.##..# +#.##..# +.##.##. +..#.#.. +###..#. +######. + +......####... +.........#.#. +.......#.#.#. +......####... +....##..##... +##..#.....### +##..##....#.. +######.###... +##.#..####.## +...#..#....## +##.##..####.# +##...#.....#. +####.##.###.# + +######. +..####. +..#...# +..#.#.. +....##. +...##.# +...##.# +....##. +..#.#.# +..#...# +..####. +######. +###.#.. +.....## +...#..# +##..#.. +...#... + +.###......######. +...####....#..#.. +##.#.##.##......# +.#.#....#..#..#.. +##.#.....###..### +#..###........... +..#...###.##..##. +.######...#....#. +#..#.....##.##.## +#....#.#.##....## +#.###.#...##..##. +..##.##..#..##..# +..##.#..#.#.##.#. +.##.#.##.#.####.# +..#........#..#.. +..###...#..####.. +..###.#.#..####.. + +.#....#.... +###..###### +..####..##. +...##...##. +.######.##. +##....##### +###..###### +##.##.##### +#####.##..# +.#....#.##. +###..###### + +####..####..##. +....#..#..##.#. +####.###..###.. +#..###.##.####. +.##.####.#..#.# +....#..###.#.## +...###..#....#. +.....#...#..#.. +.....#...#..#.. + +#..#.#..#.# +....####.#. +#..##.##### +#..##.##### +....####.#. +#..#.#.##.# +.##.#.#.##. + +...##........ +#..##..#..#.. +..####......# +#.#..#.#..#.# +.#....#....#. +#.####.#..#.# +##.##.##..##. +###########.# +.#.##.#.##.#. +###..###..### +#......####.. +########..### +.######.##.## + +#.#..#.#....# +..#..#...##.. +.#.##.#..#..# +##....##....# +######.##..#. +..####....### +#.#..#.#....# +.##..##..###. +#.#..#.#...#. +.#.##.#.#..#. +#......##...# +#......##...# +.#.##.#.#..#. +#.#..#.#...#. +.##..##..###. + +.#....####....#.. +.#.####..####.#.. +#######..######.. +##.#...##...#.### +##...######...### +.##..#....#..##.. +.#....#..#....#.. +#...##....##...## +....##....##..... + +##....##.#.####.# +##.####.###....## +..##..##.##.##.## +...##.#....####.. +#.#.#.#...#.##.#. +##...#.##.#.##.#. +..###.##.##.##.## +###..##.......... +..##..####.#..#.# +...####.....##... +..#.##...#.#..#.# +..##.#####.####.# +..#...###..#..#.. + +##.##.#####...#.# +##.##.###....##.# +..####........#.# +.#..#.#.##...#..# +..####.....#.##.. +........##..##.## +#.####.##....#.## +##.##.#########.. +##.##.#########.. + +####.#...#... +.####..#..### +#....#.#....# +..##......#.# +..##......#.# +#....#.#....# +.####..#..### +####.##..#... +###..#.####.. +.###.#...#... +.#...####.##. +.###..##..### +##.....#.##.. +#.####..#.### +#.##.#####..# +#.#.#.....#.. +#.#.#.....#.. + +###.#.. +#....## +#.##... +#.#.#.. +..##### +.####.. +####.#. +.###... +.###... +#..#### +.#.#... +.#.#... +#..#### + +....#####.... +#..###.###### +####...##...# +####..##..##. +.....##.#...# +#####..#..### +#####..##.### +.....##.#...# +####..##..##. +####...##...# +#..###.###### + +...#....#.....# +...#....#....## +.#.##..##.#.##. +.##..##..##.##. +##........##.#. +.#.#.##.#.#.... +.#..#..#..#.#.. +##..####..###.. +#..#....#..#.## +..##....##..#.# +###..##..###.#. + +...###.####..## +.##.#....#.#### +###..###..##..# +##.#.#.#..###.# +##.#.#.#..##..# +#....#.#...#... +.##..##..###.## +#....#.###.#... +##.##.#..#####. +##.##.#..#####. +#....#.###.#... +.##..##..###.## +#....#.#...#... +##.#.#.#..##..# +##.#.#.#..###.# + +#####.####...#### +###.#...###..###. +..###.##...##...# +##.#####.######.# +..#..##.#.####.#. +##.##...#.####.#. +######..##.##.##. + +....##..# +####.#..# +.##.#.##. +..#.##..# +.##.#.##. +....##### +#..#.#### +....##### +######..# +#..#.#### +#..##.##. +#..##.... +####.#### + +.##..##.#####.# +.#####.....#.## +###.##...##...# +..##..#.###.### +..##..#.###.### +###.##...##...# +.#####.....#.## +.##..##.#####.# +#......##.####. +...##.####..#.# +##..#...##.##.# +###..#..##..... +..###...#.###.# +..###...#.###.# +###.....##..... + +......#.....##. +......#..###.## +#.##.#.##.#.... +##..##.#.#.#### +......#...#.#.. +.......##.##### +##########.#... +######..#.#.#.. +##..########.## +.......##...... +..##..#...##... +.####...#.##... +##..##..#...#.. +.#..#.#.#..#.## +#######..###... + +#..##..##..#.## +##..#..#..####. +##..#..#..####. +#..##..##..#.## +#...####...#... +#..........#.## +.##########.#.. +.##.#..#.##..## +##.##..##.##### +##..#..#..####. +#.###..#.#.###. +.###....###..## +###..##..####.# +###.####.####.. +#..#.##.#..##.. +#....##....##.# +..#.#..#.#...#. + +.....#### +##..#.##. +##..#.##. +..####### +...#.#### +##.#..##. +#####.... +.....###. +..#..#..# +...###### +..#.#.... +##..##..# +##....##. +####.#### +#####.##. +##..#.... +...#..... + +#......####...##. +#.####.#.....#.## +#########.#..#..# +#..##..#...##..## +#..##..#...##..## +#########.#..#..# +#.####.#.....#.## +#......####...##. +#..##..#..#.##.#. +.##..##.##.##..## +..#..#..###.##### +#.####.#.###..#.. +########.#####.## +##.##.##....####. +........###...#.# +#..##..#..#.#.### +###.####.####.### + +####.##...##.#.#. +.........##...### +##.###.#..###.#.. +..##........###.. +#######...#.....# +###...#.##.##.#.. +###...####.##.#.. + +##.#..#.####. +#..#..#..##.. +.###..###..## +.########..#. +###....###### +....##....... +#..#..#..##.. +#.#....#.##.# +..#.##.#....# + +###....##.... +...########## +.##.##....##. +#...##....##. +...########## +#..#..####..# +.#.....##.... +.##.##.##.##. +.#.#..#..#..# +..#.##.##.##. +.#.#.######.# + +.#..##...######.# +#.#..#..####...## +#####..#.##..#.#. +#####..#.##..#.#. +#.#..#..####...## +.#..##...######.# +#.##.#....#....#. +###.#.##.#####... +.#.#####..#..##.# +##...##.###.##... +#..#..###..#..#.. +#..#..###..#..#.. +##...##.###.##... +.#.#####..#..##.# +###.#.##.#####... +#.##.#....#....#. +.#..##...#####..# + +#....##...... +#.....#...... +..#.#....##.. +#...#..##..## +.#.#.###.##.# +#....###....# +.###.######## +#........##.. +#.####....... +##..####.##.# +.###...#.##.# + +###.#.# +######. +######. +###.#.# +.####.. +..##.## +..#.##. +###.##. +.#..### +#.#.#.. +..#.#.# +##..### +##..### +..#.#.# +#...#.. +.#..### +###.##. + +#######........#. +########.#.#....# +......#..#...#.## +###...####....#.. +.##.#..#.##.#.#.# +#..#.#....#.##.#. +####.#####..###.. +....##.#..#...#.. +#####.#.###..##.. +#####.#.###..##.. +....##.#..#...#.. + +#####...##...#### +..###..#..#..###. +..#.######.###.#. +#.#.###....###.#. +.##..#..##..#..## +..#....####....#. +####..#.##.#..### +#...#.######.#... +###............## +#.##.#..##..#.##. +#.##.#..##..#.##. +###............## +#...#.######.#... +####..#.##.#..### +..#....####....#. + +##...##.#.####. +##...#####....# +.#.#...######## +###..#.#.#....# +..#..#####....# +##........#..#. +.#...........#. +#####.###...... +..######.#.##.# +.###.#.#.#.##.# +.###.#.##.####. +...###..###..## +#...#.###.####. +#.##...#.#....# +#.##...#.#....# +#...#.###.####. +...###..###..## + +#.#.#.### +.#....#.. +..####..# +#.###..## +.#.##..## +.#....### +.#....### + +#####.#.#..#..#.. +#######.#..#..#.. +.##..#...##..##.. +#..#.#.#..##.#... +...#.#.##.#.#.... +#..####.#....#.## +#####..#.#....#.. +#.######.#..###.. +.##.....##..#.#.. +..#.##.##.....### +#####.#.##..#.... +.....#...#.#.##.. +###.#.#.####..... +#..####...#..#... +####.###...#..### + +#..##.# +.##..## +#..###. +.....## +.##..## +.##..#. +.....## + +###.####.## +##.#....#.# +#####..#### +...######.. +##.##..##.# +..##....##. +###.####### +####.##.### +##..####..# +..###..###. +##..#..#..# + +.#...#..#...#.... +###.#....#.####.# +.#.##....##.#.##. +####.#..#.####..# +##.#......#.##..# +#.##......##.#..# +####.####.####### +...#.#..#.#...... +##.##.##.##.##..# +...########...... +#.##.####.##.#..# +#..##....##..#..# +#............#### + +.###.#...## +#.#.####.## +###...####. +..##.#...#. +#.##.#...#. +#..##.#...# +#..##.#...# +#.##.#...#. +..##.#...#. + +..##.#..# +#...#.#.# +.###.#.#. +##...###. +.#...###. +.###.#.#. +#...#.#.# +..##.#..# +..#.#..#. +###....#. +###....#. + +#####...### +.##..#.###. +#..####.#.. +...##.....# +#.#.####.## +#.#.####.## +...##.....# +#..####.#.. +.#...#.###. +#####...### +#####...### + +#..####.. +.......## +#.##..### +.....#... +......#.. +....#.... +#####..## +#..#.#.## +#####.#.. + +.#.######.#.##.#. +..#.####.#..##..# +#..........####.. +#.########.#..#.# +.####..####.##.## +#.##....##.####.# +#..#....#..#..#.. +.##......##....## +...##..##...##... +#.########.####.# +##..#..#..##..##. +##.#.##.####..### +....#..#....##... + +##.#....# +...##...# +...##..## +##....... +.....##.. +..#..##.. +..##....# +..#..##.. +####....# + +###.#..#... +#....##.#.. +##..#...#.. +.....###... +.#...#..### +.##.#.#.#.. +.####..##.. +..####..### +#.#.#.##... +##.#.#..... +####.###... +########... +##.#.#..... + +#.#.### +.#...## +######. +##.##.. +.##.#.. +...##.. +....### +##.##.. +##.##.. +....### +...##.. + +.####.###.. +#..#....#.. +.#...###..# +...##.#.... +...##.###.. +#.##.....## +#.####.##.. +####..###.. +####.##.#.. +.##.#..#.## +#.#..###... +......###.. +......###.. +#.#..###... +.##.#..#.## + +....####. +####..#.# +.......#. +.....#..# +....#.#.# +####.##.# +####..#.# +.....#### +####.##.# +#####..#. +#..###... + +...#..#..##..#. +#...##.######.# +.#.###...##...# +.#.#....####... +.......#....#.. +..###..######.. +.#.####.#..#.## +.#..########### +..#.#####..#### +..###.###..###. +..###.###..###. +..#.#####..#### +.#..########### +.#.#.##.#..#.## +..###..######.. +.......#....#.. +.#.#....####... + +..##...#### +.....#..#.# +..##..#.#.# +.#.####..#. +##.#....### +##.#....### +.#.####..#. +...#..#.#.# +.....#..#.# +..##...#### +....#.##### +...#....##. +...#....##. + +#..####...##..# +#####.##.##.... +.##.##.#.##.### +.##.##.#.##.### +#####.##.##.... +#..####...##..# +####......##... +......#.##.###. +....#...###.##. +####...#.#.#..# +.##.#..###..#.# +.####.##.##.#.# +####.########.# + +#####..#.## +.##....#... +..#.#.##.## +######..#.. +#..#####..# +#..#####..# +######..#.. + +#..######.#.... +####....#..##.# +####....#..##.# +#..######.#.... +.#...#####..#.. +#...####...#.#. +##...#.#...#..# +.##.##.#.....#. +..#..##....##.. +..#.....#..##.# +##...#...#####. +##...#...#####. +..#..#..#..##.# diff --git a/13/input-ex b/13/input-ex new file mode 100644 index 0000000..07f28c8 --- /dev/null +++ b/13/input-ex @@ -0,0 +1,48 @@ +#.##..##. +..#.##.#. +##......# +##......# +..#.##.#. +..##..##. +#.#.##.#. + +#...##..# +#....#..# +..##..### +#####.##. +#####.##. +..##..### +#....#..# + +#..######.#.... +####....#..##.# +####....#..##.# +#..######.#.... +.#...#####..#.. +#...####...#.#. +##...#.#...#..# +.##.##.#.....#. +..#..##....##.. +..#.....#..##.# +##...#...#####. +##...#...#####. +..#..#..#..##.# + +####.##...##. +.##.#.##..##. +.##....###..# +####......... +#..#.#.#..... +#..######.### +#..###..#.... +#..#####..... +#####....#..# +....#.....##. +#..#......##. +.##..##.##### +.##.#...##### +.....#.#..##. +.##...#..#..# + +AA--AA--AA +AB-CDDC-BA