diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ \ No newline at end of file diff --git a/2024/day8/vector.py b/2024/day8/vector.py index 1134910..c42d335 100644 --- a/2024/day8/vector.py +++ b/2024/day8/vector.py @@ -30,5 +30,3 @@ class Vector: def distance(self, other: Self) -> int: return math.sqrt((other.x - self.x)**2 + (other.y - self.y)**2) - -