https://github.com/gustavocd/ctci
Solutions for ctci book
https://github.com/gustavocd/ctci
algorithms cracking-the-coding-interview typescript
Last synced: 4 months ago
JSON representation
Solutions for ctci book
- Host: GitHub
- URL: https://github.com/gustavocd/ctci
- Owner: gustavocd
- Created: 2019-11-05T02:37:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T01:11:29.000Z (over 1 year ago)
- Last Synced: 2024-12-29T09:50:18.329Z (about 1 year ago)
- Topics: algorithms, cracking-the-coding-interview, typescript
- Language: TypeScript
- Size: 683 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exercises from CTCI book 
Exercises from CTCI book, these are my solutions (it doesn't mean that are the best possible solutions).
## Setup project
```bash
# Clone the repo
git clone https://github.com/gustavocd/ctci.git
# Install dependencies
npm install
# Run tests
npm run test
# Run tests with coverage
npm run test:coverage
# Generate js files
npm run build
```