From e89606b744b23b4d61a5c8746271f4b25dade74b Mon Sep 17 00:00:00 2001 From: rav4s Date: Wed, 2 Dec 2020 13:20:33 -0600 Subject: [PATCH] Removed some print statements I used for debugging --- day2part2.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/day2part2.py b/day2part2.py index fd94a10..c2d435d 100644 --- a/day2part2.py +++ b/day2part2.py @@ -53,10 +53,6 @@ def find_valids(strings, pos1, pos2, letters): string = strings[j] low_pos = pos1[j] - 1 high_pos = pos2[j] - 1 - #print(string) - #print([letters[j]]) - #print(string[low_pos]) - #print(string[high_pos]) if string[low_pos] != string[high_pos]: if string[low_pos] == letters[j]: valids.append("Valid")