From 490f8255b64bff06be852863fe8708a8f7ee342a Mon Sep 17 00:00:00 2001 From: Ettore Dreucci Date: Tue, 22 Dec 2020 14:16:35 +0100 Subject: [PATCH] AoC 2020: day21: removed unused global variable Signed-off-by: Ettore Dreucci --- 2020-python/solutions/day_21.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/2020-python/solutions/day_21.py b/2020-python/solutions/day_21.py index 4c94adb..53888c6 100644 --- a/2020-python/solutions/day_21.py +++ b/2020-python/solutions/day_21.py @@ -9,8 +9,6 @@ trh fvjkl sbzzf mxmxvkd (contains dairy) sqjhc fvjkl (contains soy) sqjhc mxmxvkd sbzzf (contains fish)""" -TOP, RIGHT, BOTTOM, LEFT = 0, 1, 2, 3 - def read_input(input_path: str) -> str: """take input file path and return a str with the file's content""" with open(input_path, 'r') as input_file: