Skip to content

Instantly share code, notes, and snippets.

@karlpokus
Created October 20, 2016 09:35
Show Gist options
  • Save karlpokus/436325a22c882a295ab92e7ec3d098b2 to your computer and use it in GitHub Desktop.
Save karlpokus/436325a22c882a295ab92e7ec3d098b2 to your computer and use it in GitHub Desktop.
n people take turns taking notes at the weekly meeting @Company. Whose turn is it week x?
function secretary(people, weekNumber){
var index = weekNumber % people.length;
return people[index];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment