Skip to content

Commit 83b3a35

Browse files
committedMar 25, 2018
Add linked_list.
1 parent e9a3b9d commit 83b3a35

9 files changed

+2640
-0
lines changed
 

‎.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"presets": [
3+
[
4+
"env", {
5+
"targets": {
6+
"node": "current"
7+
}
8+
}
9+
]
10+
]
11+
}

‎.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
node_modules
2+
build
13
.idea

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Data Structures
2+
3+
```
4+
npm run babel-node --silent ./src/linked_list
5+
```

0 commit comments

Comments
 (0)