Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/timmoth/leetcode
- Owner: Timmoth
- License: mit
- Created: 2022-12-04T18:40:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T22:12:56.000Z (about 1 year ago)
- Last Synced: 2023-12-16T22:31:33.536Z (about 1 year ago)
- Language: TypeScript
- Size: 248 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```