Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ssrlive/leetcode
Leetcode solutions in rust
https://github.com/ssrlive/leetcode
leetcode rust rust-lang
Last synced: 3 months ago
JSON representation
Leetcode solutions in rust
- Host: GitHub
- URL: https://github.com/ssrlive/leetcode
- Owner: ssrlive
- Created: 2022-10-20T00:44:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T06:12:10.000Z (10 months ago)
- Last Synced: 2024-04-13T18:12:30.882Z (10 months ago)
- Topics: leetcode, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 4.14 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Solutions of Leetcode problems in rust
This repository contains my solutions of [Leetcode](https://leetcode.com/) problems in rust. The solutions are organized by sections and problems. Each problem is implemented in a separate file. The test cases are also included in the same file.
To run the code, you need to [install rust](https://rustup.rs/) first. Then run the test suits from the terminal:
```bash
cargo test
```## Problems
[problems 1-1000](src/section01/readme.md)
[problems 1001-2000](src/section02/readme.md)
[problems 2001-3000](src/section03/readme.md)
[problems 3001-4000](src/section04/readme.md)