-
Notifications
You must be signed in to change notification settings - Fork 20
/
LongestSubstringWithoutRepeatingCharacters.kt
executable file
·39 lines (33 loc) · 1.3 KB
/
LongestSubstringWithoutRepeatingCharacters.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Given a string, find the length of the longest substring without repeating characters.
* Examples:
*
* Given "abcabcbb", the answer is "abc", which the length is 3.
* Given "bbbbb", the answer is "b", with the length of 1.
* Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
*
* Result: Accepted
*/
class LongestSubstringWithoutRepeatingCharacters {
fun lengthOfLongestSubstring(s: String): Int {
if (s.isEmpty()) {
return 0
}
val resultBuilder = StringBuilder()
val tmpBuilder = StringBuilder()
val inputChars = s.toCharArray()
for (i in inputChars.indices) {
if (tmpBuilder.toString().contains(inputChars[i].toString())) {
val s1 = tmpBuilder.toString().substring(tmpBuilder.toString().lastIndexOf(inputChars[i]) + 1)
tmpBuilder.delete(0, tmpBuilder.length)
tmpBuilder.append(s1)
}
tmpBuilder.append(inputChars[i])
if (tmpBuilder.length > resultBuilder.length) {
resultBuilder.delete(0, resultBuilder.length)
resultBuilder.append(tmpBuilder)
}
}
return resultBuilder.toString().length
}
}