Lifetimes
This exercise is mostly taken from exercise 5 of LifetimeKata, a really great resource for practicing lifetimes!
In this exercise, we implement a function that, given two sentences, returns the words that are present in the first sentence but not in the second, and vice versa.
The resulting struct Difference
holds references to the words in the original sentences (rather copies of the words), so we need to ensure that the lifetimes are correct.
You need to implement the missing parts of the function find_difference
and make the tests pass.
Note that this includes adding lifetime specifiers to both find_difference
and Difference
.
You can test your implementation by running cargo test
.
Read more
Having
Difference
hold references to the original sentences is a design choice. It could also hold the words themselves like so:#![allow(unused)] fn main() { struct Difference { first_only: Vec<String>, second_only: Vec<String>, } }
This would simplify the implementation (no lifetime specifiers needed) but would be less efficient (as we would be copying the words). In real life, we often accept this trade-off and prefer the simpler solution, as it would be efficient enough.
#![allow(unused)] fn main() { use std::collections::HashSet; #[derive(Debug, Default)] pub struct Difference { first_only: Vec<&str>, second_only: Vec<&str>, } fn words(sentence: &str) -> HashSet<&str> { sentence .split(' ') .filter(|word| !word.is_empty()) // this makes sure we don't have empty words .collect() } pub fn find_difference(sentence1: &str, sentence2: &str) -> Difference { let sentence_1_words = words(sentence1); let sentence_2_words = words(sentence2); let diff = Difference::default(); todo!("implement the rest!"); // hint: iterate on the words of each sentence and use the `contains` method of `HashSet` // sorting simplifies the equality assertions below diff.first_only.sort(); diff.second_only.sort(); diff } #[cfg(test)] mod tests { use super::*; #[test] fn test_completely_disjoint_sentences() { let sentence1 = "apple banana cherry"; let sentence2 = "dog elephant fox"; let result = find_difference(sentence1, sentence2); assert_eq!(result.first_only, vec!["apple", "banana", "cherry"]); assert_eq!(result.second_only, vec!["dog", "elephant", "fox"]); } #[test] fn test_identical_sentences() { let sentence1 = "apple banana cherry"; let sentence2 = "apple banana cherry"; let result = find_difference(sentence1, sentence2); assert!(result.first_only.is_empty()); assert!(result.second_only.is_empty()); } #[test] fn test_some_common_words() { let sentence1 = "apple banana cherry"; let sentence2 = "banana cherry dog"; let result = find_difference(sentence1, sentence2); assert_eq!(result.first_only, vec!["apple"]); assert_eq!(result.second_only, vec!["dog"]); } #[test] fn test_empty_sentences() { let sentence1 = ""; let sentence2 = ""; let result = find_difference(sentence1, sentence2); assert!(result.first_only.is_empty()); assert!(result.second_only.is_empty()); } #[test] fn test_one_empty_sentence() { let sentence1 = "apple banana cherry"; let sentence2 = ""; let result = find_difference(sentence1, sentence2); assert_eq!(result.first_only, vec!["apple", "banana", "cherry"]); assert!(result.second_only.is_empty()); } #[test] fn test_drop_first_sentence_before_second() { todo!("Uncomment the code bellow once the rest of tests pass"); // let sentence1 = String::from("A long sentence that takes up a lot of memory. We want to drop it as soon as possible."); // let sentence2 = // String::from("A short sentence, we are ok with keeping around for a while."); // let Difference { // first_only, // second_only, // } = find_difference(&sentence1, &sentence2); // #[rustfmt::skip] // assert_eq!( // first_only, // vec! ["We", "as", "drop", "it", "long", "lot", "memory.", "of", "possible.", "sentence", "soon", "takes", "that", "to", "up", "want"], // ); // drop(sentence1); // #[rustfmt::skip] // assert_eq!( // second_only, // vec! ["are", "around", "for", "keeping", "ok", "sentence,", "short", "we", "while.", "with"], // ); } } }