//ProjectEulerRust/src/Problems.rs //Matthew Ellison // Created: 06-11-20 //Modified: 06-17-20 //This file just forwards all the problem modules //Unless otherwise listed all non-standard includes are my own creation and available from https://bibucket.org/Mattrixwv/RustClasses /* Copyright (C) 2020 Matthew Ellison This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ pub mod Answer; pub mod Problem1; pub mod Problem2; pub mod Problem3; pub mod Problem4; pub mod Problem5; pub mod Problem6; pub mod Problem7; pub mod Problem8; pub mod Problem9; pub mod Problem10; pub mod Problem11; pub mod Problem12; pub mod Problem13; pub mod Problem14; pub mod Problem15; pub mod Problem16; pub mod Problem17; pub mod Problem18; pub mod Problem19; pub mod Problem20; pub mod Problem21; pub mod Problem22; pub mod Problem23; pub mod Problem24;