()
| 51 | |
| 52 | #[test] |
| 53 | fn basic() { |
| 54 | assert_eq!(Solution::min_window(String::from("ADOBECODEBANC"), String::from("ABC")), String::from("BANC")); |
| 55 | assert_eq!(Solution::min_window(String::from("ADOBECODEBANC"), String::from("ABCD")), String::from("ADOBEC")); |
| 56 | assert_eq!(Solution::min_window(String::from("ADOBECODEBANC"), String::from("ABF@CD")), String::from("")); |
| 57 | |
| 58 | |
| 59 | } |
| 60 | } |
nothing calls this directly
no outgoing calls
no test coverage detected