A Rust project implementing solutions to problems from Project Euler with the goal of learning ins and outs of the langugage
- Finding multiples of two given numbers below a limit.
- Calculating the sum of Fibonacci numbers below a certain limit.
- Finding the largest prime factor of a number.
- Rust installed on your machine.
To build the project, use the following command:
cargo build
This will compile the project and generate the executable in the target/debug/
directory.
To lint the code using rustfmt
for code formatting, use the following command:
cargo fmt
This will format your code according to the Rust formatting guidelines.
To run the project, use the following command:
cargo run
This will execute the default target.
If you'd like to contribute to this project, follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and submit a pull request.
This project is licensed under the MIT License.