Skip to content

Instantly share code, notes, and snippets.

@jedisct1
Created March 21, 2020 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedisct1/ad04fbf4a12c1532c536629579670f78 to your computer and use it in GitHub Desktop.
Save jedisct1/ad04fbf4a12c1532c536629579670f78 to your computer and use it in GitHub Desktop.
function hashlocks(n: isize): void {
while (n >= 128) {
for (let i = 0; i < 80; ++i) {
for (let j = 0; j < 8; ++j) {
// empty loop, but the content is not important
}
}
n -= 128;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment