Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 605 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 605 Bytes

leetcode-problems-rust

Collection of leetcode problems solved with Rust 🦀.

Purpose of this project

  • Learn the Rust programming language through leetcode problems.
  • Improve skills in algorithms and data structures.

How to use

Each problem in the repository is stored in its own file, located in the relevant subfolder based on the problem's difficulty level: easy, medium, or hard. The name of the file is the name of the problem on LeetCode, with a .rs extension. Each file contains tests for the solution. A template for creating new solutions is available in the file src/template.rs.