Rust - WIP Sum of Multiples

This commit is contained in:
anthony.cicchetti 2017-04-27 14:39:11 -04:00
parent 7dd6945fd9
commit ed6f96f131
8 changed files with 154 additions and 0 deletions

7
rust/sum-of-multiples/.gitignore vendored Normal file
View file

@ -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

View file

@ -0,0 +1,3 @@
[package]
name = "sum-of-multiples"
version = "0.0.0"

View file

@ -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.

View file

@ -0,0 +1,12 @@
pub fn sum_of_multiples(x: i64, factors: &Vec<i64>) -> 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;
}

View file

@ -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![]))
}

BIN
rust/test/main.exe Normal file

Binary file not shown.

BIN
rust/test/main.pdb Normal file

Binary file not shown.

19
rust/test/main.rs Normal file
View file

@ -0,0 +1,19 @@
pub fn sum_of_multiples(x: i64, factors: &Vec<i64>) -> 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]);
}