usestd::{collections::HashSet};structSolution;implSolution{pubfnlength_of_longest_substring(s:String)->i32{letlen=s.len();iflen==0{return0;}let(mutleft,mutright,mutans)=(0,0,0);letmutwindow=HashSet::<char>::new();letchars=s.chars().collect::<Vec<char>>();whileright<len{ifwindow.contains(&chars[right]){window.remove(&chars[left]);left+=1;}else{window.insert(chars[right]);right+=1;}ans=ans.max(window.len());}ansasi32}}/// # Longest Substring Without Repeating Characters#[cfg(test)]pubmodtest_3{usecrate::hot100::sliding_window::p3::Solution;#[test]fntest_p3(){// You can use `assert_eq!(target,Solution::function(args))` to call the functionassert_eq!(3,Solution::length_of_longest_substring("abcabcbb".to_string()))}}
structSolution;implSolution{pubfnlength_of_longest_substring(s:String)->i32{letbytes=s.as_bytes();letlen=bytes.len();let(mutleft,mutright,mutmax_len)=(0,0,0);letmutseen=[false;128];whileright<len{letc=bytes[right]asusize;ifseen[c]{seen[bytes[left]asusize]=false;left+=1;}else{seen[c]=true;right+=1;}max_len=max_len.max(right-left);}max_lenasi32}}/// # Longest Substring Without Repeating Characters#[cfg(test)]pubmodtest_3{usecrate::hot100::sliding_window::p3::Solution;#[test]fntest_p3(){// You can use `assert_eq!(target,Solution::function(args))` to call the functionassert_eq!(3,Solution::length_of_longest_substring("abcabcbb".to_string()))}}