1
1
Fork 0
exercism/jq/bird-count/bird-count.jq

12 lines
169 B
Text
Raw Normal View History

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