Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Created May 10, 2021 14:33
Show Gist options
  • Save RahmatSaeedi/ffe28f0998ad15ce09e55bfafb85f4c1 to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/ffe28f0998ad15ce09e55bfafb85f4c1 to your computer and use it in GitHub Desktop.
CodeSignal - Arcade - Intro - JS - Circle of Numbers
function circleOfNumbers(n, firstNumber) {
return (n/2+firstNumber) % n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment