Solved Leap

This commit is contained in:
anthony.cicchetti 2017-04-26 09:58:00 -04:00
parent 8546b8cd77
commit 637fb1795d
5 changed files with 114 additions and 0 deletions

7
rust/leap/.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

3
rust/leap/Cargo.toml Normal file
View file

@ -0,0 +1,3 @@
[package]
name = "leap"
version = "0.0.0"

66
rust/leap/README.md Normal file
View file

@ -0,0 +1,66 @@
# Leap
Given a year, report if it is a leap year.
The tricky thing here is that a leap year in the Gregorian calendar occurs:
```plain
on every year that is evenly divisible by 4
except every year that is evenly divisible by 100
unless the year is also evenly divisible by 400
```
For example, 1997 is not a leap year, but 1996 is. 1900 is not a leap
year, but 2000 is.
If your language provides a method in the standard library that does
this look-up, pretend it doesn't exist and implement it yourself.
## Notes
Though our exercise adopts some very simple rules, there is more to
learn!
For a delightful, four minute explanation of the whole leap year
phenomenon, go watch [this youtube video][video].
[video]: http://www.youtube.com/watch?v=xX96xng7sAE
## 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
JavaRanch Cattle Drive, exercise 3 [http://www.javaranch.com/leap.jsp](http://www.javaranch.com/leap.jsp)
## Submitting Incomplete Problems
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

16
rust/leap/src/lib.rs Normal file
View file

@ -0,0 +1,16 @@
pub fn is_leap_year(year: i32) -> bool {
if (year % 4 == 0){
if (year % 100 == 0){
if (year % 400 == 0){
return true;
}
return false
}
return true;
}
else {
return false;
}
}

22
rust/leap/tests/leap.rs Normal file
View file

@ -0,0 +1,22 @@
extern crate leap;
#[test]
fn test_vanilla_leap_year() {
assert_eq!(leap::is_leap_year(1996), true);
}
#[test]
fn test_any_old_year() {
assert_eq!(leap::is_leap_year(1997), false);
}
#[test]
fn test_century() {
assert_eq!(leap::is_leap_year(1900), false);
}
#[test]
fn test_exceptional_centuries() {
assert_eq!(leap::is_leap_year(2000), true);
assert_eq!(leap::is_leap_year(2400), true);
}