javascript-algorithms/README.md
Oleksii Trekhleb 64e5428925 Add LinkedList.
2018-03-27 15:14:57 +03:00

23 lines
324 B
Markdown

# JavaScript Algorithms and Data Structures
## Data Structures
- [Linked List](Linked List)
### Running Tests
**Run all tests**
```
npm test
```
**Run tests by name**
```
npm test -- -t 'LinkedList'
```
**Run tests from specific file**
```
npm test -- ./src/data-structures/linked-list/__test__/LinkedList.test.js
```