-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path3-LongestSubstringWithoutRepeatingCharacters.kt
39 lines (35 loc) · 1.33 KB
/
3-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
/*
* 3. Longest Substring Without Repeating Characters
* https://leetcode.com/problems/longest-substring-without-repeating-characters/
*/
class Solution {
fun lengthOfLongestSubstring(s: String): Int {
val seenCharacters = hashSetOf<Char>()
var longestRangeSize = 0
var initialIndex = 0
var currentIndex = 0
while (currentIndex < s.length) {
val currentChar = s[currentIndex]
if (!seenCharacters.contains(currentChar)) {
seenCharacters.add(currentChar)
} else {
val currentRangeSize = currentIndex - initialIndex
longestRangeSize = Math.max(currentRangeSize, longestRangeSize)
var auxIndex = currentIndex-1
var previousChar = s[auxIndex]
while (previousChar != currentChar) {
auxIndex-=1
previousChar = s[auxIndex]
}
while (initialIndex < auxIndex) {
seenCharacters.remove(s[initialIndex])
initialIndex+=1
}
initialIndex+=1
}
currentIndex+= 1
}
val currentRangeSize = currentIndex - initialIndex
return Math.max(currentRangeSize, longestRangeSize)
}
}