()
| 6 | |
| 7 | impl MagicDictionary { |
| 8 | fn new() -> Self { |
| 9 | MagicDictionary { |
| 10 | mmp: HashMap::new() |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | fn build_dict(&mut self, dictionary: Vec<String>) { |
| 15 | for s in dictionary { |
nothing calls this directly
no outgoing calls
no test coverage detected