diff --git a/10/10.py b/10/10.py new file mode 100644 index 0000000..5ce75c0 --- /dev/null +++ b/10/10.py @@ -0,0 +1,42 @@ + + + +data = open("input.txt").read().strip().split("\n") +data = [list(map(int, x)) for x in data] + +def make_bound(data): + N = len(data) + M = len(data) + def bound(i, j): + return 0<=i