Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/timmoth/leetcode

Solutions to Leetcode problems
https://github.com/timmoth/leetcode

Last synced: 21 days ago
JSON representation

Solutions to Leetcode problems

Awesome Lists containing this project

README

        

# LeetCode
Solutions to Leetcode problems

## Typescript

Create a new solution + test file
```
npx ts-node .\GenerateSolutionTemplate.ts
```

Run tests for a single solution
```
yarn jest Easy/0001.tests.ts
```

Run all tests
```
yarn jest
```

## Dotnet
Run Tests for a single solution
```
dotnet test --filter Tests.Easy.Tests0013
```

Run all tests
```
dotnet test
```