Skip to content

Instantly share code, notes, and snippets.

@kenju
kenju / oncall.rb
Last active June 26, 2021 14:45
On-call rota with 7 people for 24/7 with 24 hours per rota
class Rota
def initialize(members, window)
@members = members
@window = window
@enumerator = buid_enumerator
end
def take
@window.times.map {
walk