1
1
Fork 0
exercism/jq/darts/darts.jq
Christina Sørensen 35bed00d22
feat(jq): darts
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-16 07:41:19 +01:00

5 lines
99 B
Text

hypot(.x; .y)
| if . <= 1 then 10
elif . <= 5 then 5
elif . <= 10 then 1
else 0 end