Skip to content

Commit

Permalink
Docs: Add link to blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Jan 19, 2019
1 parent 4d552ee commit 0f05ec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/data-structures/linked-list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ A JavaScript implementation of a linked list. This class uses the conventions of
1. Defining a `values()` generator method.
1. Returning `undefined` from `get()` when no such index exists.

Read the [blog post](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/) about the design of this class.

## Usage

Use CommonJS to get access to the `LinkedList` constructor:
Expand Down
2 changes: 1 addition & 1 deletion src/data-structures/linked-list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanwhocodes/linked-list",
"version": "2.0.1",
"version": "2.0.2",
"description": "A LinkedList implementation in JavaScript",
"main": "linked-list.js",
"scripts": {
Expand Down

0 comments on commit 0f05ec9

Please sign in to comment.