Skip to content

Instantly share code, notes, and snippets.

@pjagielski
Created August 5, 2018 21:35
Show Gist options
  • Save pjagielski/bfc008518405881fb1062578fe293753 to your computer and use it in GitHub Desktop.
Save pjagielski/bfc008518405881fb1062578fe293753 to your computer and use it in GitHub Desktop.
(defn first-scored-side [match]
(let [goal-times
(concat
(team-goal-times (:home_team_events match) :home)
(team-goal-times (:away_team_events match) :away))]
(->> goal-times (sort-by second) first first)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment