Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Rename fibonacci-dynamic-programming (fix typo) #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
amejiarosario merged 1 commit into master from fix/typo
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/content/part04/dynamic-programming.asc
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ When we have recursive functions, doing duplicated work is the perfect place for
.Recursive Fibonacci Implemenation using Dynamic Programming
[source, javascript]
----
include::{codedir}/algorithms/fibanacci-dynamic-programming.js[tag=snippet,indent=0]
include::{codedir}/algorithms/fibonacci-dynamic-programming.js[tag=snippet,indent=0]
----

This implementation checks if we already calculated the value, if so it will save it for later use.
Expand Down
2 changes: 1 addition & 1 deletion deprecated-README.adoc
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ image::https://user-images.githubusercontent.com/418605/46118890-ba721180-c1d6-1
* Divide and Conquer
** Fibonacci Numbers. https://github.com/amejiarosario/dsa.js/blob/master/src/algorithms/fibonacci-recursive.js[Code]
* Dynamic Programming
** Fibonacci with memoization. https://github.com/amejiarosario/dsa.js/blob/master/src/algorithms/fibanacci-dynamic-programming.js[Code]
** Fibonacci with memoization. https://github.com/amejiarosario/dsa.js/blob/master/src/algorithms/fibonacci-dynamic-programming.js[Code]
* Backtracking algorithms
** Word permutations. https://github.com/amejiarosario/dsa.js/blob/master/src/algorithms/permutations-backtracking.js[Code]

Expand Down
2 changes: 1 addition & 1 deletion src/algorithms/fibonacci.spec.js
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const implementations = [
'fibonacci',
'fibonacci-recursive',
'fibanacci-dynamic-programming',
'fibonacci-dynamic-programming',
];

implementations.forEach((fileName) => {
Expand Down

AltStyle によって変換されたページ (->オリジナル) /