An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Exercises from CTCI book ![](https://github.com/gustavocd/ctci/workflows/Cracking%20the%20coding%20interview%20CI/badge.svg)

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
```