Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
duereg committed Dec 2, 2014
1 parent 076e464 commit 37a9275
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ As well as the following algorithms:
* Binary Search
* Merge Sort
* Quick Sort
* Shuffle (Fisher–Yates)

Various problems will be solved to show how to use these basic algorithms and data structures.
This project contains a collection of solved problems.

The process of creating this code is documented [here](http://blog.mattblair.co).
Hopefully these serve as examples of how to use these algorithms and data structures.

I've documented the process of creating this code [here](http://blog.mattblair.co).

##Usage

If you want access to these basic data structures in your project, include this package.
If you want access to these data structures in your project, include this package.

```shell
> var algorithms: = require('js-algorithms')
Expand All @@ -49,7 +52,10 @@ If you want access to these basic data structures in your project, include this
algorithms: {
sorting: {
quickSort: [Function]
mergeSort: [Function] }}}
mergeSort: [Function]
},
shuffle: [Function]
}}
```

0 comments on commit 37a9275

Please sign in to comment.