diff --git a/rust/sum-of-multiples/.gitignore b/rust/sum-of-multiples/.gitignore new file mode 100644 index 0000000..0e49cdd --- /dev/null +++ b/rust/sum-of-multiples/.gitignore @@ -0,0 +1,7 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock +Cargo.lock \ No newline at end of file diff --git a/rust/sum-of-multiples/Cargo.toml b/rust/sum-of-multiples/Cargo.toml new file mode 100644 index 0000000..a362da0 --- /dev/null +++ b/rust/sum-of-multiples/Cargo.toml @@ -0,0 +1,3 @@ +[package] +name = "sum-of-multiples" +version = "0.0.0" diff --git a/rust/sum-of-multiples/README.md b/rust/sum-of-multiples/README.md new file mode 100644 index 0000000..c2fbace --- /dev/null +++ b/rust/sum-of-multiples/README.md @@ -0,0 +1,50 @@ +# Sum Of Multiples + +Given a number, find the sum of all the multiples of particular numbers up to but not including that number. + +If we list all the natural numbers up to but not including 20 that are +multiples of either 3 or 5, we get 3, 5, 6 and 9, 10, 12, 15, and 18. + +The sum of these multiples is 78. + +Given a number, find the sum of the multiples of a given set of numbers, +up to but not including that number. + +## Rust Installation + +Refer to the [exercism help page][help-page] for Rust installation and learning +resources. + +## Writing the Code + +Execute the tests with: + +```bash +$ cargo test +``` + +All but the first test have been ignored. After you get the first test to +pass, remove the ignore flag (`#[ignore]`) from the next test and get the tests +to pass again. The test file is located in the `tests` directory. You can +also remove the ignore flag from all the tests to get them to run all at once +if you wish. + +Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you +haven't already, it will help you with organizing your files. + +## Feedback, Issues, Pull Requests + +The [exercism/xrust](https://github.com/exercism/xrust) repository on GitHub is the home for all of the Rust exercises. If you have feedback about an exercise, or want to help implement new exercises, head over there and create an issue. Members of the [rust track team](https://github.com/orgs/exercism/teams/rust) are happy to help! + +If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md). + +[help-page]: http://exercism.io/languages/rust +[crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html + +## Source + +A variation on Problem 1 at Project Euler [http://projecteuler.net/problem=1](http://projecteuler.net/problem=1) + +## Submitting Incomplete Problems +It's possible to submit an incomplete solution so you can see how others have completed the exercise. + diff --git a/rust/sum-of-multiples/src/lib.rs b/rust/sum-of-multiples/src/lib.rs new file mode 100644 index 0000000..62d2bd0 --- /dev/null +++ b/rust/sum-of-multiples/src/lib.rs @@ -0,0 +1,12 @@ +pub fn sum_of_multiples(x: i64, factors: &Vec) -> i64 { + let mut sum: i64 = 0; + for i in factors{ + for j in 2..x{ + if j % i == 0{ + // Need to figure out how to not add in duplicates + sum += j; + } + } + } + return sum; +} \ No newline at end of file diff --git a/rust/sum-of-multiples/tests/sum-of-multiples.rs b/rust/sum-of-multiples/tests/sum-of-multiples.rs new file mode 100644 index 0000000..939b2b6 --- /dev/null +++ b/rust/sum-of-multiples/tests/sum-of-multiples.rs @@ -0,0 +1,63 @@ +extern crate sum_of_multiples; + +use sum_of_multiples::*; + +#[test] +fn multiples_one() { + assert_eq!(0, sum_of_multiples(1, &vec![3, 5])) +} + +#[test] +fn multiples_two() { + assert_eq!(3, sum_of_multiples(4, &vec![3, 5])) +} + +#[test] +fn multiples_three() { + assert_eq!(23, sum_of_multiples(10, &vec![3, 5])) +} + +#[test] +fn multiples_four() { + assert_eq!(2318, sum_of_multiples(100, &vec![3, 5])) +} + +#[test] +fn multiples_five() { + assert_eq!(233168, sum_of_multiples(1000, &vec![3, 5])) +} + +#[test] +fn multiples_six() { + assert_eq!(51, sum_of_multiples(20, &vec![7, 13, 17])) +} + +#[test] +fn multiples_seven() { + assert_eq!(30, sum_of_multiples(15, &vec![4, 6])) +} + +#[test] +fn multiples_eight() { + assert_eq!(4419, sum_of_multiples(150, &vec![5, 6, 8])) +} + +#[test] +fn multiples_nine() { + assert_eq!(275, sum_of_multiples(51, &vec![5, 25])) +} + +#[test] +fn multiples_ten() { + assert_eq!(2203160, sum_of_multiples(10000, &vec![43, 47])) +} + +#[test] +fn multiples_eleven() { + assert_eq!(4950, sum_of_multiples(100, &vec![1])) +} + +#[test] +fn multiples_twelve() { + assert_eq!(0, sum_of_multiples(10000, &vec![])) +} diff --git a/rust/test/main.exe b/rust/test/main.exe new file mode 100644 index 0000000..571d53d Binary files /dev/null and b/rust/test/main.exe differ diff --git a/rust/test/main.pdb b/rust/test/main.pdb new file mode 100644 index 0000000..d41302b Binary files /dev/null and b/rust/test/main.pdb differ diff --git a/rust/test/main.rs b/rust/test/main.rs new file mode 100644 index 0000000..eb31434 --- /dev/null +++ b/rust/test/main.rs @@ -0,0 +1,19 @@ +pub fn sum_of_multiples(x: i64, factors: &Vec) -> i64 { + let mut sum: i64 = 0; + for i in factors{ + print!("Factor: {}\n", i); + for j in 2..x{ + print!("j: {}\n", j); + print!("mod: {0} % {1} = {2}\n", j, i, i%j); + if j % i == 0{ + sum += j; + print!("Sum: {}\n", sum); + } + } + } + return sum; +} + +pub fn main() { + sum_of_multiples(10, &vec![3,5]); +} \ No newline at end of file