Category: Uncategorized
-

This problem deals with finding the longest substring length without repeating characters and the characters allowed are of ASCII code characters with 8 bits => 2^8 => 256 characters. Example : abcdabcdef Longest substring without repeating characters is abcdef of length 6. O(256n) solution can be found @ Longest Substring Without Repeating Characters – LeetCode…