Browse Source

Exercism: Sum of Multiples

master
Julio Biason 4 years ago
parent
commit
ca6c516f41
  1. 1
      rust/sum-of-multiples/.exercism/metadata.json
  2. 8
      rust/sum-of-multiples/.gitignore
  3. 4
      rust/sum-of-multiples/Cargo.toml
  4. 89
      rust/sum-of-multiples/README.md
  5. 5
      rust/sum-of-multiples/src/lib.rs
  6. 107
      rust/sum-of-multiples/tests/sum-of-multiples.rs

1
rust/sum-of-multiples/.exercism/metadata.json

@ -0,0 +1 @@
{"track":"rust","exercise":"sum-of-multiples","id":"12c7ef95c8f240ab81b025dc688d5f20","url":"https://exercism.io/my/solutions/12c7ef95c8f240ab81b025dc688d5f20","handle":"JBiason","is_requester":true,"auto_approve":false}

8
rust/sum-of-multiples/.gitignore vendored

@ -0,0 +1,8 @@
# Generated by Cargo
# will have compiled files and executables
/target/
**/*.rs.bk
# 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

4
rust/sum-of-multiples/Cargo.toml

@ -0,0 +1,4 @@
[package]
edition = "2018"
name = "sum-of-multiples"
version = "1.5.0"

89
rust/sum-of-multiples/README.md

@ -0,0 +1,89 @@
# Sum Of Multiples
Given a number, find the sum of all the unique multiples of particular numbers up to
but not including that number.
If we list all the natural numbers below 20 that are multiples of 3 or 5,
we get 3, 5, 6, 9, 10, 12, 15, and 18.
The sum of these multiples is 78.
## 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, open the tests source file which is located in the `tests` directory
and remove the `#[ignore]` flag from the next test and get the tests to pass
again. Each separate test is a function with `#[test]` flag above it.
Continue, until you pass every test.
If you wish to run all ignored tests without editing the tests source file, use:
```bash
$ cargo test -- --ignored
```
To run a specific test, for example `some_test`, you can use:
```bash
$ cargo test some_test
```
If the specific test is ignored use:
```bash
$ cargo test some_test -- --ignored
```
To learn more about Rust tests refer to the [online test documentation][rust-tests]
Make sure to read the [Modules][modules] chapter if you
haven't already, it will help you with organizing your files.
## Further improvements
After you have solved the exercise, please consider using the additional utilities, described in the [installation guide](https://exercism.io/tracks/rust/installation), to further refine your final solution.
To format your solution, inside the solution directory use
```bash
cargo fmt
```
To see, if your solution contains some common ineffective use cases, inside the solution directory use
```bash
cargo clippy --all-targets
```
## Submitting the solution
Generally you should submit all files in which you implemented your solution (`src/lib.rs` in most cases). If you are using any external crates, please consider submitting the `Cargo.toml` file. This will make the review process faster and clearer.
## Feedback, Issues, Pull Requests
The [exercism/rust](https://github.com/exercism/rust) 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 are happy to help!
If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
[help-page]: https://exercism.io/tracks/rust/learning
[modules]: https://doc.rust-lang.org/book/ch07-02-defining-modules-to-control-scope-and-privacy.html
[cargo]: https://doc.rust-lang.org/book/ch14-00-more-about-cargo.html
[rust-tests]: https://doc.rust-lang.org/book/ch11-02-running-tests.html
## Source
A variation on Problem 1 at Project Euler [http://projecteuler.net/problem=1](http://projecteuler.net/problem=1)
## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

5
rust/sum-of-multiples/src/lib.rs

@ -0,0 +1,5 @@
pub fn sum_of_multiples(limit: u32, factors: &[u32]) -> u32 {
(1..limit)
.filter(|number| factors.iter().filter(|x| **x > 0).any(|x| number % x == 0))
.sum()
}

107
rust/sum-of-multiples/tests/sum-of-multiples.rs

@ -0,0 +1,107 @@
use sum_of_multiples::*;
#[test]
fn no_multiples_within_limit() {
assert_eq!(0, sum_of_multiples(1, &[3, 5]))
}
#[test]
fn one_factor_has_multiples_within_limit() {
assert_eq!(3, sum_of_multiples(4, &[3, 5]))
// 3 (6) => 3
// (5)
}
#[test]
fn more_than_one_multiple_within_limit() {
assert_eq!(9, sum_of_multiples(7, &[3]))
// 3 6 (9) => 9
}
#[test]
// #[ignore]
fn more_than_one_factor_with_multiples_within_limit() {
assert_eq!(23, sum_of_multiples(10, &[3, 5]))
// 3 6 9 = 18 -> 18 + 5 = 23
// 5 = 5
}
#[test]
// #[ignore]
fn each_multiple_is_only_counted_once() {
assert_eq!(2318, sum_of_multiples(100, &[3, 5]))
}
#[test]
// #[ignore]
fn a_much_larger_limit() {
assert_eq!(233_168, sum_of_multiples(1000, &[3, 5]))
}
#[test]
// #[ignore]
fn three_factors() {
assert_eq!(51, sum_of_multiples(20, &[7, 13, 17]))
}
#[test]
// #[ignore]
fn factors_not_relatively_prime() {
assert_eq!(30, sum_of_multiples(15, &[4, 6]))
}
#[test]
// #[ignore]
fn some_pairs_of_factors_relatively_prime_and_some_not() {
assert_eq!(4419, sum_of_multiples(150, &[5, 6, 8]))
}
#[test]
// #[ignore]
fn one_factor_is_a_multiple_of_another() {
assert_eq!(275, sum_of_multiples(51, &[5, 25]))
}
#[test]
// #[ignore]
fn much_larger_factors() {
assert_eq!(2_203_160, sum_of_multiples(10_000, &[43, 47]))
}
#[test]
// #[ignore]
fn all_numbers_are_multiples_of_1() {
assert_eq!(4950, sum_of_multiples(100, &[1]))
}
#[test]
// #[ignore]
fn no_factors_means_an_empty_sum() {
assert_eq!(0, sum_of_multiples(10_000, &[]))
}
#[test]
// #[ignore]
fn the_only_multiple_of_0_is_0() {
assert_eq!(0, sum_of_multiples(1, &[0]))
}
#[test]
// #[ignore]
fn the_factor_0_does_not_affect_the_sum_of_multiples_of_other_factors() {
assert_eq!(3, sum_of_multiples(4, &[3, 0]))
}
#[test]
// #[ignore]
fn solutions_using_include_exclude_must_extend_to_cardinality_greater_than_3() {
assert_eq!(39_614_537, sum_of_multiples(10_000, &[2, 3, 5, 7, 11]))
}
#[test]
fn oh_shit_thats_too_large() {
assert_eq!(
4_209_783_663,
sum_of_multiples(100_000, &[2, 3, 5, 7, 11, 13, 17, 19, 23, 29])
)
}
Loading…
Cancel
Save