summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-27 13:24:21 +0200
committermo8it <mo8it@proton.me>2024-06-27 13:24:21 +0200
commit7efccc36b4c26c444eab2531b6139190af569d6f (patch)
treeab5ebd08f34c91fe05ab708f88683c0e99c67aeb
parent64c2de95ca95c1d23dcb416723b33ccdfca9c956 (diff)
lifetimes1 solution
-rw-r--r--exercises/16_lifetimes/lifetimes1.rs16
-rw-r--r--rustlings-macros/info.toml3
-rw-r--r--solutions/16_lifetimes/lifetimes1.rs29
3 files changed, 41 insertions, 7 deletions
diff --git a/exercises/16_lifetimes/lifetimes1.rs b/exercises/16_lifetimes/lifetimes1.rs
index d34f3ab..19e2d39 100644
--- a/exercises/16_lifetimes/lifetimes1.rs
+++ b/exercises/16_lifetimes/lifetimes1.rs
@@ -3,6 +3,7 @@
// going out of scope before it is used. Remember, references are borrows and do
// not own their own data. What if their owner goes out of scope?
+// TODO: Fix the compiler error by updating the function signature.
fn longest(x: &str, y: &str) -> &str {
if x.len() > y.len() {
x
@@ -12,9 +13,16 @@ fn longest(x: &str, y: &str) -> &str {
}
fn main() {
- let string1 = String::from("abcd");
- let string2 = "xyz";
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
- let result = longest(string1.as_str(), string2);
- println!("The longest string is '{}'", result);
+ #[test]
+ fn test_longest() {
+ assert_eq!(longest("abcd", "123"), "abcd");
+ assert_eq!(longest("abc", "1234"), "1234");
+ }
}
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index bed2eaf..e2ebfa5 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -821,9 +821,8 @@ You may need this:
[[exercises]]
name = "lifetimes1"
dir = "16_lifetimes"
-test = false
hint = """
-Let the compiler guide you. Also take a look at the book if you need help:
+Let the compiler guide you. Also take a look at The Book if you need help:
https://doc.rust-lang.org/book/ch10-03-lifetime-syntax.html"""
[[exercises]]
diff --git a/solutions/16_lifetimes/lifetimes1.rs b/solutions/16_lifetimes/lifetimes1.rs
index 4e18198..ca7b688 100644
--- a/solutions/16_lifetimes/lifetimes1.rs
+++ b/solutions/16_lifetimes/lifetimes1.rs
@@ -1 +1,28 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+// The Rust compiler needs to know how to check whether supplied references are
+// valid, so that it can let the programmer know if a reference is at risk of
+// going out of scope before it is used. Remember, references are borrows and do
+// not own their own data. What if their owner goes out of scope?
+
+fn longest<'a>(x: &'a str, y: &'a str) -> &'a str {
+ // ^^^^ ^^ ^^ ^^
+ if x.len() > y.len() {
+ x
+ } else {
+ y
+ }
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_longest() {
+ assert_eq!(longest("abcd", "123"), "abcd");
+ assert_eq!(longest("abc", "1234"), "1234");
+ }
+}