Skip to content
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
13 changes: 12 additions & 1 deletion darts/darts.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
def score(x, y):
pass
# Calculate the distance from the center (0, 0) to the dart's landing point
distance = math.sqrt(x**2 + y**2)

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