Skip to content

Commit

Permalink
Fix typo in README.md (JS-Challenges#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascherj authored and mybrainishuge committed Aug 22, 2018
1 parent 42e45f7 commit f6bd744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ Recursion isn't unique to any one programming language. As a software engineer,


### Divide and Conquer
Recursion is often used in _divide and conquer_ algorithms where problems can be divided into similar subproblems and conquered individually. Consider traversing a tree structure. Each branch may have its own "children" branches. Every branch is essentually just another tree which means, as long as child trees are found, we can recurse on each child.
Recursion is often used in _divide and conquer_ algorithms where problems can be divided into similar subproblems and conquered individually. Consider traversing a tree structure. Each branch may have its own "children" branches. Every branch is essentially just another tree which means, as long as child trees are found, we can recurse on each child.

[inception]: <https://en.wikipedia.org/wiki/Inception>

0 comments on commit f6bd744

Please sign in to comment.