Skip to content

Instantly share code, notes, and snippets.

@jorendorff
Last active October 7, 2023 23:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorendorff/11c5dfd84d1f9d1bb2d6 to your computer and use it in GitHub Desktop.
Save jorendorff/11c5dfd84d1f9d1bb2d6 to your computer and use it in GitHub Desktop.
Make a random7 function from a random5 function.
function random7() {
while (true) {
var n = random5() + 5 * random5();
if (n < 21)
return n % 7;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment