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