10 lines
217 B
C#
10 lines
217 B
C#
namespace _3._Longest_Substring_Without_Repeating_Characters;
|
|
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(new Solution().LengthOfLongestSubstring("dvdf"));
|
|
}
|
|
}
|