()
| 38 | } |
| 39 | |
| 40 | fn main() { |
| 41 | let mut obj = MagicDictionary::new(); |
| 42 | obj.build_dict(vec!["hello".to_string(),"hallo".to_string(), "judge".to_string()]); |
| 43 | let ret_2: bool = obj.search("judga".to_string()); |
| 44 | println!("{:?}", ret_2); |
| 45 | } |
nothing calls this directly
no test coverage detected