6 lines
219 B
Rust
6 lines
219 B
Rust
|
use std::collections::HashSet;
|
||
|
|
||
|
pub fn anagrams_for<'a>(word: &str, possible_anagrams: &[&str]) -> HashSet<&'a str> {
|
||
|
todo!("For the '{word}' word find anagrams among the following words: {possible_anagrams:?}");
|
||
|
}
|