1
1
Fork 0
exercism/jq/bird-count/bird-count.jq
Christina Sørensen 39f408b8b0
feat: bird-count
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-06 14:51:36 +01:00

11 lines
169 B
Text

{
last_week: .[-2],
yesterday: .[-1].[-2],
total: .[-1]|add,
busy_days: .[-1]|map(select(. >= 5))|length,
has_day_without_birds: .[-1]|any(. == 0)
}