Skip to content

Instantly share code, notes, and snippets.

@joaofnds
Last active September 23, 2018 21:21
Show Gist options
  • Select an option

  • Save joaofnds/e41d4c240cf2ae445df8e527a4c71a47 to your computer and use it in GitHub Desktop.

Select an option

Save joaofnds/e41d4c240cf2ae445df8e527a4c71a47 to your computer and use it in GitHub Desktop.
const newHornerSequence =
(...seq) =>
x =>
seq.slice(0, -1).reduce((acc, n) => (acc + n) * x, 0) + seq.pop();
console.log(newHornerSequence(4, 5, 6, 7, 8)(5)); // 3318
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment