Longest Substring Program Without Repeating Character
Longest Substring Program Without Repeating Character It should return the Substring. Ex: The String value is : “abcadx” , for that non-repeating substring is: “bcadx”. So here we removed ‘a’ in this program because it is repeated character in this string.