Data structure and algorithm problems in a library
npm install js-algo-ds


JavaScript implementations of Data Structure, Algorithms and Programming Problems from various sites.
Sites like LeetCode, HackerRank, CodeChef, SPOJ, Codewars etc.
This project will help users to reuse concepts from these sites.
- Two Sum
To use these data structures and algorithms in your own app, follow these steps:
1. Install the npm package using yarn add js-algo-ds
(or npm install js-algo-ds)
2. Import any of the exported modules like import { twoSum } from 'js-algo-ds' and use.
For a complete list, see package.json.
- yarn install: Installs dependencies
- yarn build: Generates the minified build from the source code using Rollup
- yarn dev: Generates the minified build from the source code using Rollup with watcher
- yarn lint: Runs eslint to lint JS files
- yarn test: Runs all tests
- yarn test:watch: Runs tests in watch mode
- yarn test:coverage: Runs all tests and includes coverage report
Please see the Contributing Guidelines.
The Code of Conduct can be found here.