Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete darts.py #123

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions darts/darts.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
import math
def score(x, y):
# Calculate the distance of the dart from the center (0, 0)
distance = math.sqrt(x**2 + y**2)

# Determine the score based on the distance
if distance > 10:
return 0 # Outside the target
elif distance > 5:
return 1 # Outer circle
elif distance > 1:
return 5 # Middle circle
else:
return 10 # Inner circle


pass