https://github.com/ceoshikhar/ctci-6th-edition-typescript
Cracking the Coding Interview 6th Edition TypeScript Solutions
https://github.com/ceoshikhar/ctci-6th-edition-typescript
Last synced: 2 months ago
JSON representation
Cracking the Coding Interview 6th Edition TypeScript Solutions
- Host: GitHub
- URL: https://github.com/ceoshikhar/ctci-6th-edition-typescript
- Owner: ceoshikhar
- Created: 2021-09-28T11:36:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-08T20:52:05.000Z (over 3 years ago)
- Last Synced: 2025-02-05T18:47:34.939Z (4 months ago)
- Language: TypeScript
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cracking the Coding Interview 6th Edition TypeScript Solutions
🚧 I am currently preparing for coding interview and this repository is a WIP. This repository may be missing some questions or even some chapters. The solutions to questions might not be the most efficient. You can run tests suite to check if the solutions work as expected.
Thanks to [CtCI-6th-Edition-JavaScript-ES2015](https://github.com/careercup/CtCI-6th-Edition-JavaScript-ES2015) for the tests.
### Install dependecies to be able to run the tests suite
> I have used [jest](https://jestjs.io) for creating the tests suite.
```bash
yarn
```### Run the tests suite
```bash
yarn test
```