From 979968e3c825ddbd03fbb2db50bc2883313d1565 Mon Sep 17 00:00:00 2001 From: Clif Date: Sun, 12 Jan 2025 23:06:11 -0500 Subject: [PATCH] done --- solutions/challenge_34/euclidean_distance.py | 16 ++++++++++++++-- solutions/tests/challenge_34/.gitignore | 14 ++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 solutions/tests/challenge_34/.gitignore diff --git a/solutions/challenge_34/euclidean_distance.py b/solutions/challenge_34/euclidean_distance.py index ccf11901b..f8ffe9d8e 100644 --- a/solutions/challenge_34/euclidean_distance.py +++ b/solutions/challenge_34/euclidean_distance.py @@ -1,13 +1,25 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- +# -*- coding: utf-8 -*-- """ Created on 01/03/2025 -@Author: Clifford Exael + Description of the module, its purpose, and its functionality. + +Feedback: It would be useful to put a docstring on the top of the module and explain its functionality. + """ import math +# The rest of the code goes here... + + +""" +Created on 01/03/2025 + +@Author: Clifford Exael +""" + def euclidean_distance(point1, point2): """ diff --git a/solutions/tests/challenge_34/.gitignore b/solutions/tests/challenge_34/.gitignore new file mode 100644 index 000000000..d64ea381d --- /dev/null +++ b/solutions/tests/challenge_34/.gitignore @@ -0,0 +1,14 @@ +# Ignore venv and Python environment files +.venv/ +*.pyc +*.pyo +*.pyd +__pycache__/ +# Ignore package manager folders +node_modules/ +# Ignore IDE specific files +.vscode/ +.idea/ +# Ignore system-specific files +.DS_Store +Thumbs.db