diff --git a/rust/leap/.gitignore b/rust/leap/.gitignore new file mode 100644 index 0000000..cb14a42 --- /dev/null +++ b/rust/leap/.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 diff --git a/rust/leap/Cargo.toml b/rust/leap/Cargo.toml new file mode 100644 index 0000000..e9ad1e3 --- /dev/null +++ b/rust/leap/Cargo.toml @@ -0,0 +1,3 @@ +[package] +name = "leap" +version = "0.0.0" diff --git a/rust/leap/README.md b/rust/leap/README.md new file mode 100644 index 0000000..21e1b27 --- /dev/null +++ b/rust/leap/README.md @@ -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. + diff --git a/rust/leap/src/lib.rs b/rust/leap/src/lib.rs new file mode 100644 index 0000000..b5cfcbd --- /dev/null +++ b/rust/leap/src/lib.rs @@ -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; + } +} diff --git a/rust/leap/tests/leap.rs b/rust/leap/tests/leap.rs new file mode 100644 index 0000000..eea113e --- /dev/null +++ b/rust/leap/tests/leap.rs @@ -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); +}