diff --git a/2022/4.py b/2022/4.py index a8e0a5b..468e90c 100644 --- a/2022/4.py +++ b/2022/4.py @@ -1,6 +1,7 @@ pairs = [[[int(n) for n in m.split("-")] for m in l.split(",")] for l in [i for i in open("input.txt", 'r').read().splitlines()]] sum = 0 +sum2 = 0 for p in pairs: if p[0][0] <= p[1][0] and p[0][1] >= p[1][1]: @@ -8,4 +9,10 @@ for p in pairs: elif p[0][0] >= p[1][0] and p[0][1] <= p[1][1]: sum += 1 -print(sum) \ No newline at end of file + if p[0][0] <= p[1][1] and p[0][1] >= p[1][0]: + sum2 += 1 + elif p[1][0] <= p[0][1] and p[1][1] >= p[0][0]: + sum2 += 1 + +print(sum) +print(sum2) \ No newline at end of file