public void Test_LengthOfLongestSubstring(string input, int output)
 {
     Assert.Equal(output, Solution003.LengthOfLongestSubstring(input));
 }