Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Lastrophysicien committed Jan 13, 2025
1 parent 925c3c9 commit 979968e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
16 changes: 14 additions & 2 deletions solutions/challenge_34/euclidean_distance.py
Original file line number Diff line number Diff line change
@@ -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):
"""
Expand Down
14 changes: 14 additions & 0 deletions solutions/tests/challenge_34/.gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 979968e

Please sign in to comment.