Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Created April 10, 2021 16:22
Show Gist options
  • Save GaetanoPiazzolla/89bc0abda50b449b89db7d9a943ae353 to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/89bc0abda50b449b89db7d9a943ae353 to your computer and use it in GitHub Desktop.
const execute = (num) => {
let result = 0;
for (let i = Math.pow(num, 7); i >= 0; i--) {
result += Math.atan(i) * Math.tan(i);
}
return result;
}
module.exports = {
execute
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment