Skip to content

Commit

Permalink
Merge pull request TheOdinProject#25037 from shayshahal/spelling
Browse files Browse the repository at this point in the history
Project Recursion: Fix Fibonacci's name spelling
  • Loading branch information
thatblindgeye authored Jan 22, 2023
2 parents 1d6b63f + f83ef10 commit e628e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/computer_science/project_recursion.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ In order to run these functions you'll need to run it from somewhere. You can ru

#### Understanding Recursive Fibonacci

Did you figure it out? Congratulations! But do you really understand what is taking place? If you need some help understanding what's going on with this method, give [Khan Academy's Stepping Through Recursive Fibonacci Function video](https://www.youtube.com/watch?v=zg-ddPbzcKM) a watch. If you prefer to read, [Recursive Fibonnaci Explained](https://medium.com/launch-school/recursive-fibonnaci-method-explained-d82215c5498e) is also very helpful!
Did you figure it out? Congratulations! But do you really understand what is taking place? If you need some help understanding what's going on with this method, give [Khan Academy's Stepping Through Recursive Fibonacci Function video](https://www.youtube.com/watch?v=zg-ddPbzcKM) a watch. If you prefer to read, [Recursive Fibonacci Explained](https://medium.com/launch-school/recursive-fibonnaci-method-explained-d82215c5498e) is also very helpful!

### Project: Merge Sort

Sorting algorithms are a great way to get to grips with recursion. One such algorithm is [Merge Sort](http://en.wikipedia.org/wiki/Merge_sort), a type of sort that lends itself well to recursion and can be much faster than other algorithms such as bubble sort on the right data sets. You'll build a function which sorts a given array but uses a "merge sort" function for doing so.

It can be a bit strange to wrap your head around, but just remember you're "dividing and conquering" the problem.
Expand Down

0 comments on commit e628e09

Please sign in to comment.