public void shouldFindLengthOfLongestSubstringWithoutRepeatingCharacters(string input, int expectedOutput)
 {
     Assert.Equal(expectedOutput, Problem3.lengthOfLongestSubstring(input));
 }