forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0076_minimum_window_substring.rs
56 lines (50 loc) · 1.21 KB
/
n0076_minimum_window_substring.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* [76] Minimum Window Substring
*
* Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).
*
* Example:
*
*
* Input: S = "ADOBECODEBANC", T = "ABC"
* Output: "BANC"
*
*
* Note:
*
*
* If there is no such window in S that covers all characters in T, return the empty string "".
* If there is such window, you are guaranteed that there will always be only one unique minimum window in S.
*
*
*/
pub struct Solution {}
// submission codes start here
use std::collections::HashMap;
impl Solution {
pub fn min_window(s: String, t: String) -> String {
if t.is_empty() || t.len() > s.len() {
return "".to_owned()
}
let (mut start, mut end) = (0_usize, 0_usize);
let mut result = (0_usize,0_usize);
loop {
}
s[result.0..result.1].to_owned()
}
fn count_char(s: String) -> HashMap<char, i32> {
let mut res = HashMap::new();
for ch in s.chars().into_iter() {
*res.entry(ch).or_insert(0) += 1;
}
res
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_76() {
}
}