Skip to content

COSC3020/dynamic-euler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6113c6e · Feb 13, 2025

History

9 Commits
Feb 13, 2025
Dec 18, 2023
Feb 13, 2025
Dec 18, 2023
Feb 13, 2025

Repository files navigation

Dynamic Programming Euler's Number

The mathematical constant e (Euler's number) is defined as follows:

e = i = 0 1 i ! = 1 1 + 1 1 + 1 1 2 + 1 1 2 3 + 1 1 2 3 4 +

I've provided an implementation of a function to approximate e up to a number of n terms in code.js for you. However, it does repeated work -- identify where the repeated work occurs and avoid it through bottom-up dynamic programming (not memoization). Change the implementation accordingly.

Test your new functions; I've provided some basic testing code in code.test.js but you need to go beyond that.

Runtime Analysis

What is the worst-case big Θ time complexity of your algorithm?

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published