Skip to content

Instantly share code, notes, and snippets.

@shanelonergan
Created February 2, 2020 00:42
Show Gist options
  • Save shanelonergan/7f1fac5cb1c232ec5ed972aa808981f9 to your computer and use it in GitHub Desktop.
Save shanelonergan/7f1fac5cb1c232ec5ed972aa808981f9 to your computer and use it in GitHub Desktop.
unique_dates.reduce(today) do | memo, date |
yesterday = memo.yesterday.to_date
if date == yesterday || date == today
streak_count += 1
memo = date
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment