Given a string
Example 1:
Input: s = "bcabc" Output: "abc"
Example 2:
Input: s = "cbacdcbc" Output: "acdb"
Constraints:
1 <= s.length <= 1000 s consists of lowercase English letters.
Solution
kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Solution { | |
fun removeDuplicateLetters(s: String): String { | |
val map = mutableMapOf<Char,Int>() | |
for(c in s) { | |
map[c] = map[c]?.let{it+1} ?: 1 | |
} | |
var ans = "" | |
var set = mutableSetOf<Char>() | |
for(c in s) { | |
map[c] = map[c]!! - 1 | |
if (set.contains(c)) { | |
continue | |
} | |
while(ans.isNotEmpty() && c < ans.last() && map[ans.last()]!! > 0) { | |
set.remove(ans.last()) | |
ans = ans.dropLast(1) | |
} | |
ans += c | |
set.add(c) | |
} | |
return ans | |
} | |
} |
沒有留言:
張貼留言