Skip to content

Instantly share code, notes, and snippets.

@xnuk
Created June 19, 2021 09:56
Show Gist options
  • Save xnuk/f42b14a6639c8cd9eeed917c8aaeb0ec to your computer and use it in GitHub Desktop.
Save xnuk/f42b14a6639c8cd9eeed917c8aaeb0ec to your computer and use it in GitHub Desktop.
const N = 1_000_000
const M_MAX = 2_000_000_000
const treeHeight = () => (Math.random() * (M_MAX - N) | 0) + N
const testCase = () => {
const trees = Array.from({ length: N }, treeHeight)
return N + ' ' + treeHeight() + '\n' + trees.join(' ') + '\n'
}
console.log(testCase())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment