Skip to content
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

[pull] main from loiane:main #1

Merged
merged 27 commits into from
Dec 5, 2024
Merged
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f1ff66f
Found Typographical Error in Documentation
sojinsamuel Aug 2, 2022
73139fe
Merge pull request #206 from SojinSamuel/patch-1
loiane Aug 2, 2022
a9ba9d8
fix: hash-table-linear-probing get function
Yamiqu Aug 3, 2022
0da564f
fix: remove useless argument
jarvislin94 Aug 20, 2022
8395876
Change line endings to LF in github
SatsCzar Dec 4, 2022
29031f0
Specified the value of 'false' and 'age' within the comment
fernanda-freitas Apr 10, 2023
eef66c9
fix & optimize gcd function
os-moussao Dec 9, 2023
adaaaf4
update unit tests for gcd function
os-moussao Dec 9, 2023
25596e4
Merge pull request #221 from os-moussao/fix-optimize/gcd
loiane Dec 20, 2023
f241a56
Merge pull request #219 from fernanda-freitas/fix_truthyfalsy_comment…
loiane Dec 20, 2023
dbac861
Merge pull request #213 from SatsCzar/patch-1
loiane Dec 20, 2023
60e5269
Bump follow-redirects from 1.13.0 to 1.15.4
dependabot[bot] Jan 9, 2024
b1eb1c0
Merge pull request #222 from loiane/dependabot/npm_and_yarn/follow-re…
loiane Feb 27, 2024
cc1ce5d
Bump browserify-sign from 4.2.1 to 4.2.2
dependabot[bot] Feb 27, 2024
0842127
Bump @babel/traverse from 7.12.1 to 7.23.9
dependabot[bot] Feb 27, 2024
dcf995f
Bump async from 2.6.3 to 2.6.4
dependabot[bot] Feb 27, 2024
0d56427
Merge pull request #207 from Yamiqu/main
loiane Mar 12, 2024
9fb02d3
Merge pull request #210 from JackZong/fix/remove_useless_argument
loiane Mar 12, 2024
d31faae
Merge pull request #223 from loiane/dependabot/npm_and_yarn/browserif…
loiane Mar 12, 2024
a57317d
Merge pull request #224 from loiane/dependabot/npm_and_yarn/babel/tra…
loiane Mar 12, 2024
84c141f
Merge pull request #225 from loiane/dependabot/npm_and_yarn/async-2.6.4
loiane Mar 12, 2024
fa69786
Bump follow-redirects from 1.15.4 to 1.15.6
dependabot[bot] Mar 16, 2024
dd48e16
Merge pull request #226 from loiane/dependabot/npm_and_yarn/follow-re…
loiane Mar 23, 2024
e00c298
Merge pull request #227 from loiane/third-edition
loiane Mar 24, 2024
ff6e72c
Create build.yml
loiane Oct 27, 2024
9f4b321
Fix broken 3rd edition Packt link in README.md
kudosscience Nov 21, 2024
3ddc965
Merge pull request #232 from kudosscience/patch-1
loiane Nov 22, 2024
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 examples/chapter09/04-Fibonacci.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function fibonacciMemoization(n) {
const memo = [0, 1];
const fibonacci = (n) => {
if (memo[n] != null) return memo[n];
return memo[n] = fibonacci(n - 1, memo) + fibonacci(n - 2, memo);
return memo[n] = fibonacci(n - 1) + fibonacci(n - 2);
};
return fibonacci(n);
}
Expand Down