Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sohail0992/js-algorithms
Leetcode, Codility problems solutions.
https://github.com/sohail0992/js-algorithms
algorithms computer-science interview-preparation javascript practice-programming solutions
Last synced: 19 days ago
JSON representation
Leetcode, Codility problems solutions.
- Host: GitHub
- URL: https://github.com/sohail0992/js-algorithms
- Owner: sohail0992
- Created: 2020-03-31T12:24:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T09:30:59.000Z (over 1 year ago)
- Last Synced: 2023-03-07T12:06:09.292Z (over 1 year ago)
- Topics: algorithms, computer-science, interview-preparation, javascript, practice-programming, solutions
- Language: JavaScript
- Homepage:
- Size: 2.07 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Installation
- Install Node and NPM.
- Install mocha gloabllay `npm install mocha -g`.
- clone this repository.
- cd into the cloned directory and run `npm install`.## Directory Structure
### For LeetCode
- open LeetCode Directory
- open the directory with problem name.
- each directory has a
- test.js file with test cases. You can add custom test to testSamples in specified format.
- problem-name-solution.js file with solution.## For Algrothems base on dataStructure
- Open directory with name `sorted`.
- Select one of dataStructure.
- Each data structure is again distrubted by the problems from different sources. e.g you will find Codelity directory insider Array.## To Run test
- cd into directory of problem and run `mocha`