Skip to content

Commit

Permalink
Add linked_list.
Browse files Browse the repository at this point in the history
  • Loading branch information
trekhleb committed Mar 25, 2018
1 parent e9a3b9d commit 83b3a35
Show file tree
Hide file tree
Showing 9 changed files with 2,640 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"presets": [
[
"env", {
"targets": {
"node": "current"
}
}
]
]
}
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
build
.idea
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Data Structures

```
npm run babel-node --silent ./src/linked_list
```
Loading

0 comments on commit 83b3a35

Please sign in to comment.