https://github.com/rbren/interview-questions
https://github.com/rbren/interview-questions
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rbren/interview-questions
- Owner: rbren
- Created: 2016-12-05T19:13:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-13T19:39:49.000Z (over 9 years ago)
- Last Synced: 2025-08-24T18:28:56.366Z (11 months ago)
- Language: JavaScript
- Size: 186 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interview Questions
This is a set of practice questions for technical interviews, created for
the [Boston Tech Interview Meetup](https://www.meetup.com/Boston-Tech-Interview-Meetup/)
Each directory contains a question, along with an answer in JavaScript.
## Tests
Tests are run with mocha
```
npm install -g mocha
mocha code/**/test.js
```
### Trying your own answers
You can replace `answer.js` with your own solution and run
```
mocha code/{question_name}/test.js
```
to check it against a few test cases.