Add new problem module prob757 and update mod.rs to include it
Some checks failed
mint_ci / Check Python code using ruff (push) Successful in 49s
Rust-lint / Run rust tests (push) Failing after 1m7s
Rust-lint / Check Rust code with rustfmt and clippy (push) Failing after 43s

- Introduced the `prob757` module, which is now part of the Project Euler series.
- Updated the `mod.rs` file to include the new `prob757` module, ensuring it is accessible within the project.
This commit is contained in:
2025-10-08 01:35:48 +09:00
parent d1389a2efe
commit cb9bbbb77d
2 changed files with 1 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ pub mod prob686;
pub mod prob700;
pub mod prob719;
pub mod prob751;
pub mod prob757;
pub mod prob800;
pub mod prob808;
pub mod prob816;

View File