Rust - Solved raindrops
This commit is contained in:
parent
637fb1795d
commit
4a08850331
6 changed files with 132 additions and 2 deletions
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
pub fn is_leap_year(year: i32) -> bool {
|
||||
if (year % 4 == 0){
|
||||
if (year % 100 == 0){
|
||||
|
|
7
rust/raindrops/.gitignore
vendored
Normal file
7
rust/raindrops/.gitignore
vendored
Normal 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
|
3
rust/raindrops/Cargo.toml
Normal file
3
rust/raindrops/Cargo.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[package]
|
||||
name = "raindrops"
|
||||
version = "0.0.0"
|
57
rust/raindrops/README.md
Normal file
57
rust/raindrops/README.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
# Raindrops
|
||||
|
||||
Convert a number to a string, the contents of which depend on the number's factors.
|
||||
|
||||
- If the number has 3 as a factor, output 'Pling'.
|
||||
- If the number has 5 as a factor, output 'Plang'.
|
||||
- If the number has 7 as a factor, output 'Plong'.
|
||||
- If the number does not have 3, 5, or 7 as a factor,
|
||||
just pass the number's digits straight through.
|
||||
|
||||
## Examples
|
||||
|
||||
- 28's factors are 1, 2, 4, **7**, 14, 28.
|
||||
- In raindrop-speak, this would be a simple "Plong".
|
||||
- 30's factors are 1, 2, **3**, **5**, 6, 10, 15, 30.
|
||||
- In raindrop-speak, this would be a "PlingPlang".
|
||||
- 34 has four factors: 1, 2, 17, and 34.
|
||||
- In raindrop-speak, this would be "34".
|
||||
|
||||
## 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 a famous interview question intended to weed out potential candidates. [http://jumpstartlab.com](http://jumpstartlab.com)
|
||||
|
||||
## Submitting Incomplete Problems
|
||||
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
|
||||
|
16
rust/raindrops/src/lib.rs
Normal file
16
rust/raindrops/src/lib.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
pub fn raindrops(drop: i32) -> String{
|
||||
let mut return_string: String = "".to_string();
|
||||
if drop % 3 == 0 {
|
||||
return_string.push_str("Pling");
|
||||
}
|
||||
if drop % 5 == 0 {
|
||||
return_string.push_str("Plang");
|
||||
}
|
||||
if drop % 7 == 0 {
|
||||
return_string.push_str("Plong");
|
||||
}
|
||||
if return_string == "" {
|
||||
return_string = drop.to_string();
|
||||
}
|
||||
return return_string;
|
||||
}
|
49
rust/raindrops/tests/raindrops.rs
Normal file
49
rust/raindrops/tests/raindrops.rs
Normal file
|
@ -0,0 +1,49 @@
|
|||
extern crate raindrops;
|
||||
|
||||
#[test]
|
||||
fn test_1() { assert_eq!("1", raindrops::raindrops(1)); }
|
||||
|
||||
#[test]
|
||||
fn test_3() { assert_eq!("Pling", raindrops::raindrops(3)); }
|
||||
|
||||
#[test]
|
||||
fn test_5() { assert_eq!("Plang", raindrops::raindrops(5)); }
|
||||
|
||||
#[test]
|
||||
fn test_7() { assert_eq!("Plong", raindrops::raindrops(7)); }
|
||||
|
||||
#[test]
|
||||
fn test_6() { assert_eq!("Pling", raindrops::raindrops(6)); }
|
||||
|
||||
#[test]
|
||||
fn test_9() { assert_eq!("Pling", raindrops::raindrops(9)); }
|
||||
|
||||
#[test]
|
||||
fn test_10() { assert_eq!("Plang", raindrops::raindrops(10)); }
|
||||
|
||||
#[test]
|
||||
fn test_14() { assert_eq!("Plong", raindrops::raindrops(14)); }
|
||||
|
||||
#[test]
|
||||
fn test_15() { assert_eq!("PlingPlang", raindrops::raindrops(15)); }
|
||||
|
||||
#[test]
|
||||
fn test_21() { assert_eq!("PlingPlong", raindrops::raindrops(21)); }
|
||||
|
||||
#[test]
|
||||
fn test_25() { assert_eq!("Plang", raindrops::raindrops(25)); }
|
||||
|
||||
#[test]
|
||||
fn test_35() { assert_eq!("PlangPlong", raindrops::raindrops(35)); }
|
||||
|
||||
#[test]
|
||||
fn test_49() { assert_eq!("Plong", raindrops::raindrops(49)); }
|
||||
|
||||
#[test]
|
||||
fn test_52() { assert_eq!("52", raindrops::raindrops(52)); }
|
||||
|
||||
#[test]
|
||||
fn test_105() { assert_eq!("PlingPlangPlong", raindrops::raindrops(105)); }
|
||||
|
||||
#[test]
|
||||
fn test_12121() { assert_eq!("12121", raindrops::raindrops(12121)); }
|
Loading…
Add table
Reference in a new issue