https://github.com/timmoth/leetcode
Solutions to Leetcode problems
https://github.com/timmoth/leetcode
Last synced: over 1 year 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T22:12:56.000Z (over 2 years ago)
- Last Synced: 2025-01-31T12:49:23.451Z (over 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
```