structSolution;implSolution{pubfnmax_area(height:Vec<i32>)->i32{let(mutl,mutr,mutans)=(0,height.len()-1,0);whilel<r{leth=height[l].min(height[r]);ans=ans.max((r-l)asi32*h);ifheight[l]>height[r]{r-=1;}else{l+=1;}}ans}}/// # Container With Most Water#[cfg(test)]pubmodtest_11{usecrate::hot100::two_pointers::p11::Solution;#[test]fntest_p11(){// You can use `assert_eq!(target,Solution::function(args))` to call the functionassert_eq!(49,Solution::max_area(vec![1,8,6,2,5,4,8,3,7]));}}