Skip to content

Instantly share code, notes, and snippets.

@rsaryev
Created December 14, 2023 23:26
Show Gist options
  • Save rsaryev/d1831d426c96083bbbd67a159ba95fc5 to your computer and use it in GitHub Desktop.
Save rsaryev/d1831d426c96083bbbd67a159ba95fc5 to your computer and use it in GitHub Desktop.
Multiply list by integer (with restrictions
const multiply = (n, l) => l.map(a => Math.round(a / (1 / n)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment