8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca41ea commit 912941bCopy full SHA for 912941b
README.md
@@ -236,6 +236,7 @@ tree is being used.
236
## How to use this repository
237
238
**Install all dependencies**
239
+
240
```
241
npm install
242
@@ -249,15 +250,26 @@ npm run lint
249
250
251
252
**Run all tests**
253
254
255
npm test
256
257
258
**Run tests by name**
259
260
261
npm test -- 'LinkedList'
262
263
264
+**Troubleshooting**
265
266
+In case if linting or testing is failing try to delete the `node_modules` folder and re-install npm packages:
267
268
+```
269
+rm -rf ./node_modules
270
+npm i
271
272
273
**Playground**
274
275
You may play with data-structures and algorithms in `./src/playground/playground.js` file and write
0 commit comments