Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)