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
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