-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Small details in the implementation of Fibonnacci using Dynamic Programming. #82
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
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update README.md
Update README.md
wrote prototype notation
correspond to the target code of typescript
Changed queue
Added a linear algebra library
removed switch construct and put in a if-construct.
wrote more object oriented
wrote the tree more object oriented
added the let-statment to some methods
Fixed bubblesort
fixed the function cocktailShakerSort and added the let-statment.
fixed a leak and added the let-statement
added the let-statment
added let-statment
added the let-statment
I translate this code from Java repository to Javascript language. Could be improved.
Create vigenereCipher.js
minimum priority queue added under heap
Related: #14
Related: #14
feat: add counting and flash sorts
Fixes#62 : Added Declaration for Local Variable
Implemented comb sort algorithm
Added Missing declaration
Implemented cycle sort algorithm
Implemented bucket sort algorithm
Find and retrieve the encryption key automatically Note: This is a draft version, please help to modify, Thanks!
optimized the indentation for the if statement in line 18
some changes is made to optimize the function
Made 2 changes to optimize the match results: 1. use a loop to find the next digit of wordbank element and compare with outStr's digit 2. this part need to be optimize with the calculation of the number of occurance of word's probabilities
Create keyFinder.js
Your fork is too old so it is showing old commits also can you rebase or update your fork please |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
// My code just improves a little
// Feel free to ask me questions
function dp_ficbo(n)
{
var val = [];
for ( let i = 0; i <= n; i++)
{
val[i] = 0;
}
if ( n == 1 || n == 2)
{
return 1;
}
else
{
val[1] = 1;
val[2] = 2;
}
console.log(dp_ficbo(20));