aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2021-11-05 12:18:56 +0000
committerFederico Igne <git@federicoigne.com>2021-11-05 12:18:56 +0000
commita43a779ad12b464175f95d9381499fe28510ec09 (patch)
treeb272dd3806944acfbc83b9d21fce1d58420df6a8
parenta4fcb13e89b055f710e6f38437208fc87b0a6edd (diff)
downloadexercism-a43a779ad12b464175f95d9381499fe28510ec09.tar.gz
exercism-a43a779ad12b464175f95d9381499fe28510ec09.zip
[rust] Lucian's Luscious Lasagna
-rw-r--r--rust/lucians-luscious-lasagna/Cargo.toml4
-rw-r--r--rust/lucians-luscious-lasagna/HELP.md85
-rw-r--r--rust/lucians-luscious-lasagna/HINTS.md31
-rw-r--r--rust/lucians-luscious-lasagna/README.md159
-rw-r--r--rust/lucians-luscious-lasagna/src/lib.rs17
-rw-r--r--rust/lucians-luscious-lasagna/tests/lucians-luscious-lasagna.rs34
6 files changed, 330 insertions, 0 deletions
diff --git a/rust/lucians-luscious-lasagna/Cargo.toml b/rust/lucians-luscious-lasagna/Cargo.toml
new file mode 100644
index 0000000..6f88766
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/Cargo.toml
@@ -0,0 +1,4 @@
1[package]
2name = "lucians-luscious-lasagna"
3version = "0.1.0"
4edition = "2021"
diff --git a/rust/lucians-luscious-lasagna/HELP.md b/rust/lucians-luscious-lasagna/HELP.md
new file mode 100644
index 0000000..b4252f8
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/HELP.md
@@ -0,0 +1,85 @@
1# Help
2
3## Running the tests
4
5Execute the tests with:
6
7```bash
8$ cargo test
9```
10
11All but the first test have been ignored. After you get the first test to
12pass, open the tests source file which is located in the `tests` directory
13and remove the `#[ignore]` flag from the next test and get the tests to pass
14again. Each separate test is a function with `#[test]` flag above it.
15Continue, until you pass every test.
16
17If you wish to run _only ignored_ tests without editing the tests source file, use:
18
19```bash
20$ cargo test -- --ignored
21```
22
23If you are using Rust 1.51 or later, you can run _all_ tests with
24
25```bash
26$ cargo test -- --include-ignored
27```
28
29To run a specific test, for example `some_test`, you can use:
30
31```bash
32$ cargo test some_test
33```
34
35If the specific test is ignored, use:
36
37```bash
38$ cargo test some_test -- --ignored
39```
40
41To learn more about Rust tests refer to the online [test documentation][rust-tests].
42
43[rust-tests]: https://doc.rust-lang.org/book/ch11-02-running-tests.html
44
45## Submitting your solution
46
47You can submit your solution using the `exercism submit src/lib.rs` command.
48This command will upload your solution to the Exercism website and print the solution page's URL.
49
50It's possible to submit an incomplete solution which allows you to:
51
52- See how others have completed the exercise
53- Request help from a mentor
54
55## Need to get help?
56
57If you'd like help solving the exercise, check the following pages:
58
59- The [Rust track's documentation](https://exercism.org/docs/tracks/rust)
60- [Exercism's support channel on gitter](https://gitter.im/exercism/support)
61- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
62
63Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
64
65## Rust Installation
66
67Refer to the [exercism help page][help-page] for Rust installation and learning
68resources.
69
70## Submitting the solution
71
72Generally 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.
73
74## Feedback, Issues, Pull Requests
75
76The GitHub [track repository][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!
77
78If you want to know more about Exercism, take a look at the [contribution guide].
79
80## Submitting Incomplete Solutions
81It's possible to submit an incomplete solution so you can see how others have completed the exercise.
82
83[help-page]: https://exercism.io/tracks/rust/learning
84[github]: https://github.com/exercism/rust
85[contribution guide]: https://exercism.io/docs/community/contributors \ No newline at end of file
diff --git a/rust/lucians-luscious-lasagna/HINTS.md b/rust/lucians-luscious-lasagna/HINTS.md
new file mode 100644
index 0000000..5d1a5ff
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/HINTS.md
@@ -0,0 +1,31 @@
1# Hints
2
3## General
4
5- An integer literal can be defined as one or more consecutive digits.
6
7## 1. Define the expected oven time in minutes
8
9- You need to define a [function][functions] without any parameters.
10
11## 2. Calculate the remaining oven time in minutes
12
13- You need to define a [function][functions] with a single parameter.
14- You can use and refer to the previously defined item by its name.
15- The last expression in a function is [automatically returned][return-values] from the function; you don't have to explicitly indicate which value to return.
16- You can use the [mathematical operator for subtraction][operators] to subtract values.
17
18## 3. Calculate the preparation time in minutes
19
20- You need to define a [function][functions] with a single parameter.
21- You can use the [mathematical operator for multiplicaton][operators] to multiply values.
22
23## 4. Calculate the elapsed time in minutes
24
25- You need to define a [function][functions] with two parameters.
26- You can [call][functions] one of the other functions you've defined previously.
27- You can use the [mathematical operator for addition][operators] to add values.
28
29[functions]: https://doc.rust-lang.org/book/ch03-03-how-functions-work.html
30[return-values]: https://doc.rust-lang.org/book/ch03-03-how-functions-work.html#functions-with-return-values
31[operators]: https://doc.rust-lang.org/book/appendix-02-operators.html \ No newline at end of file
diff --git a/rust/lucians-luscious-lasagna/README.md b/rust/lucians-luscious-lasagna/README.md
new file mode 100644
index 0000000..2c3fdd3
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/README.md
@@ -0,0 +1,159 @@
1# Lucian's Luscious Lasagna
2
3Welcome to Lucian's Luscious Lasagna on Exercism's Rust Track.
4If you need help running the tests or submitting your code, check out `HELP.md`.
5If you get stuck on the exercise, check out `HINTS.md`, but try and solve it without using those first :)
6
7## Introduction
8
9In Rust, assigning a value to a name is referred to as a _binding_. Bindings are immutable unless declared with the `mut` keyword. As Rust is a statically-typed language, each binding has a type known at compile-time.
10
11Bindings are most commonly defined using the `let` keyword. Specifying a binding's type is optional for most bindings, as Rust's _type inference_ can usually infer the type based on their value. A binding looks like this:
12
13```rust
14// Automatically inferred type
15let fingers = 10;
16```
17
18Functions are _items_. Where bindings typically refer to a particular value, items refer to a unit of code organization, typically a function or a module, which is available throughout the lifetime of the program. A function automatically returns the result of its last expression. A function may have 0 or more parameters, which are bindings with a lifetime of the function call.
19
20Type inference is theoretically possible for functions, but is disabled as an intentional language design choice. While this means that you need to spend a little more time when writing code to specify precisely what a function's input and output types are, you save the time when you're reading the code, because all the input and output types are explicitly defined.
21
22```rust
23fn add(x: i32, y: i32) -> i32 {
24 x + y
25}
26```
27
28Invoking a function is done by specifying its name followed by parentheses. If the function requires parameters, an argument must be specified for each within the parentheses.
29
30```rust
31let five = add(2, 3);
32```
33
34If a binding's type cannot be inferred, the compiler will report an error. To fix this, add an explicit type annotation to the binding.
35
36```rust
37// Explicit type annotation
38let fingers: i32 = 10;
39```
40
41Items in Rust can be used before or after they are defined, because they have a static lifetime. Bindings, on the other hand, can only be used _after_ they have been defined. Using a binding before it has been defined results in a compile error.
42
43```rust
44fn main() {
45 // `fn add` hasn't yet been defined, but that's perfectly ok
46 dbg!(add(3, 4));
47}
48
49fn add(x: i32, y: i32) -> i32 {
50 x + y
51}
52```
53
54```rust
55// this won't compile; `a` is used before its binding is defined
56let b = a;
57let a = x + y
58```
59
60Rust uses curly braces (`{}`) to define a scope. A binding defined within a scope can't escape from it. This means that scope is defined by indenting the code with spaces, relative to the line declaring the binding.
61
62```rust
63let a = 1;
64dbg!(a); // 1
65{
66 // Here, we re-bind `a` to a new value, which is still immutable.
67 // This technique is called _shadowing_. The new binding is constrained to
68 // this anonymous scope. Outside this scope, the previous binding still
69 // applies.
70 let a = 2;
71 let b = 3;
72 dbg!(a, b); // 2, 3
73}
74// can't use `b` anymore because it is out of scope
75// dbg!(b);
76
77// The shadowed `a` in the inner scope above has fallen out of scope,
78// leaving us with our original binding.
79dbg!(a); // 1
80```
81
82Rust items are often organized in modules. Each crate is implicitly a module, but it can define inner sub-modules of arbitrary depth. A module groups related functionality and is defined using the `mod` keyword.
83
84```rust
85mod calc_i32 {
86 fn add(a: i32, b: i32) -> i32 { a + b }
87 fn sub(a: i32, b: i32) -> i32 { a - b }
88 fn mul(a: i32, b: i32) -> i32 { a * b }
89 fn div(a: i32, b: i32) -> i32 { a / b }
90}
91```
92
93Rust supports two types of comments. The keyword `//` indicates a single-line comment; everything following the keyword until the end of the line is ignored. The keywords `/*` and `*/` indicate a multi-line comment; everything within those two keywords is ignored. It is idiomatic and good practice to prefer single-line comments.
94
95Rust also supports doc-comments, which show up in the generated documentation produced by `cargo doc`. Outer doc comments are formed with the keyword `///`, which acts identically to the `//` keyword. They apply to the item which follows them, such as a function:
96
97```rust
98/// The `add` function produces the sum of its arguments.
99fn add(x: i32, y: i32) -> i32 { x + y }
100```
101
102Inner doc comments are formed with the keyword `//!`, which acts identically to the `//` keyword. They apply to the item enclosing them, such as a module:
103
104```rust
105mod my_cool_module {
106 //! This module is the bee's knees.
107}
108```
109
110Doc comments can be of arbitrary length and contain markdown, which is rendered into the generated documentation.
111
112## Instructions
113
114In this exercise you're going to write some code to help you cook a brilliant lasagna from your favorite cooking book.
115
116You have four tasks, all related to the time spent cooking the lasagna.
117
118## 1. Define the expected oven time in minutes
119
120Define the `expected_minutes_in_oven` binding to check how many minutes the lasagna should be in the oven. According to the cooking book, the expected oven time in minutes is 40:
121
122```rust
123expected_minutes_in_oven()
124// Returns: 40
125```
126
127## 2. Calculate the remaining oven time in minutes
128
129Define the `remaining_minutes_in_oven` function that takes the actual minutes the lasagna has been in the oven as a parameter and returns how many minutes the lasagna still has to remain in the oven, based on the expected time oven time in minutes from the previous task.
130
131```rust
132remaining_minutes_in_oven(30)
133// Returns: 10
134```
135
136## 3. Calculate the preparation time in minutes
137
138Define the `preparation_time_in_minutes` function that takes the number of layers you added to the lasagna as a parameter and returns how many minutes you spent preparing the lasagna, assuming each layer takes you 2 minutes to prepare.
139
140```rust
141preparation_time_in_minutes(2)
142// Returns: 4
143```
144
145## 4. Calculate the elapsed time in minutes
146
147Define the `elapsed_time_in_minutes` function that takes two parameters: the first parameter is the number of layers you added to the lasagna, and the second parameter is the number of minutes the lasagna has been in the oven. The function should return how many minutes you've worked on cooking the lasagna, which is the sum of the preparation time in minutes, and the time in minutes the lasagna has spent in the oven at the moment.
148
149```rust
150elapsed_time_in_minutes(3, 20)
151// Returns: 26
152```
153
154## Source
155
156### Created by
157
158- @coriolinus
159- @ErikSchierboom \ No newline at end of file
diff --git a/rust/lucians-luscious-lasagna/src/lib.rs b/rust/lucians-luscious-lasagna/src/lib.rs
new file mode 100644
index 0000000..6900269
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/src/lib.rs
@@ -0,0 +1,17 @@
1// This stub file contains items which aren't used yet; feel free to remove this module attribute
2// to enable stricter warnings.
3#![allow(unused)]
4
5pub fn expected_minutes_in_oven() -> i32 { 40 }
6
7pub fn remaining_minutes_in_oven(actual_minutes_in_oven: i32) -> i32 {
8 expected_minutes_in_oven() - actual_minutes_in_oven
9}
10
11pub fn preparation_time_in_minutes(number_of_layers: i32) -> i32 {
12 2 * number_of_layers
13}
14
15pub fn elapsed_time_in_minutes(number_of_layers: i32, actual_minutes_in_oven: i32) -> i32 {
16 preparation_time_in_minutes(number_of_layers) + actual_minutes_in_oven
17}
diff --git a/rust/lucians-luscious-lasagna/tests/lucians-luscious-lasagna.rs b/rust/lucians-luscious-lasagna/tests/lucians-luscious-lasagna.rs
new file mode 100644
index 0000000..340d476
--- /dev/null
+++ b/rust/lucians-luscious-lasagna/tests/lucians-luscious-lasagna.rs
@@ -0,0 +1,34 @@
1use lucians_luscious_lasagna::{
2 elapsed_time_in_minutes, expected_minutes_in_oven, preparation_time_in_minutes,
3 remaining_minutes_in_oven,
4};
5
6#[test]
7fn expected_minutes_in_oven_is_correct() {
8 assert_eq!(40, expected_minutes_in_oven());
9}
10
11#[test]
12fn remaining_minutes_in_oven_after_fifteen_minutes() {
13 assert_eq!(15, remaining_minutes_in_oven(25));
14}
15
16#[test]
17fn preparation_time_in_minutes_for_one_layer() {
18 assert_eq!(2, preparation_time_in_minutes(1));
19}
20
21#[test]
22fn preparation_time_in_minutes_for_multiple_layers() {
23 assert_eq!(8, preparation_time_in_minutes(4));
24}
25
26#[test]
27fn elapsed_time_in_minutes_for_one_layer() {
28 assert_eq!(32, elapsed_time_in_minutes(1, 30));
29}
30
31#[test]
32fn elapsed_time_in_minutes_for_multiple_layers() {
33 assert_eq!(16, elapsed_time_in_minutes(4, 8));
34}