peuler 0.1.0

A Rust crate with solutions to the Project Euler problems
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Solution;
use pmath::lcm_multiple;

problem!(Problem0005, 5, "Smallest Multiple");

impl Solution for Problem0005 {
    fn solve(&self) -> String {
        lcm_multiple(1u32..=20).to_string()
    }
}