10: Add Rust track exercise "nth-prime".
[?]
Aaw9nJhsNmfzFih9mKyNw9mV8CgERXJkRa1kK1Kx3LQH
Aug 16, 2021, 3:35 PM
JZN2AQ3EMSXVYKPYPMHKN6JFKAFGZMQLHO7N5A37SKTNFWFI53OQCDependencies
- [2]
265OXFLQ0: Add solutions for some of the exercises in experiment 1 "How does your experience affect how you code?".
Change contents
- file addition: nth-prime[2.16]
- file addition: tests[0.21]
- file addition: nth-prime.rs[0.39]
use nth_prime as np;#[test]fn test_first_prime() {assert_eq!(np::nth(0), 2);}#[test]#[ignore]fn test_second_prime() {assert_eq!(np::nth(1), 3);}#[test]#[ignore]fn test_sixth_prime() {assert_eq!(np::nth(5), 13);}#[test]#[ignore]fn test_big_prime() {assert_eq!(np::nth(10_000), 104_743);} - file addition: src[0.21]
- file addition: lib.rs[0.420]
pub fn nth(n: u32) -> u32 {unimplemented!("What is the 0-indexed {}th prime number?", n)} - file addition: README.md[0.21]
# Nth PrimeGiven a number n, determine what the nth prime is.By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see thatthe 6th prime is 13.If your language provides methods in the standard library to deal with primenumbers, pretend they don't exist and implement them yourself.Remember that while people commonly count with 1-based indexing (i.e. "the 6th prime is 13"), many programming languages, including Rust, use 0-based indexing (i.e. `primes[5] == 13`). Use 0-based indexing for your implementation.## Rust InstallationRefer to the [exercism help page][help-page] for Rust installation and learningresources.## Writing the CodeExecute the tests with:```bash$ cargo test```All but the first test have been ignored. After you get the first test topass, open the tests source file which is located in the `tests` directoryand remove the `#[ignore]` flag from the next test and get the tests to passagain. 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 youhaven't already, it will help you with organizing your files.## Further improvementsAfter 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```bashcargo fmt```To see, if your solution contains some common ineffective use cases, inside the solution directory use```bashcargo clippy --all-targets```## Submitting the solutionGenerally 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 RequestsThe [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/main/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## SourceA variation on Problem 7 at Project Euler [http://projecteuler.net/problem=7](http://projecteuler.net/problem=7)## Submitting Incomplete SolutionsIt's possible to submit an incomplete solution so you can see how others have completed the exercise. - file addition: Cargo.toml[0.21]
[package]edition = "2018"name = "nth_prime"version = "2.1.0"[dependencies] - file addition: .gitignore[0.21]
# 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-cargolockCargo.lock - file addition: .exercism[0.21]
- file addition: metadata.json[0.4384]
{"track":"rust","exercise":"nth-prime","id":"8a65481adda24fa38734b99839cd3736","url":"https://exercism.io/my/solutions/8a65481adda24fa38734b99839cd3736","handle":"nicoty","is_requester":true,"auto_approve":false}