1209. Remove All Adjacent Duplicates in String II - Medium
前往題目
想法
Stack
思路
- 用
Stack
儲存每個字母和當前有幾個相鄰且相同的 - 達到
k
就pop
- 沒達到就計數
+1
然後繼續 - 相鄰的不是同字母計數
=1
- 回傳結果
Code
看了Hint
自己寫出來了,insert
耗費資源,用append
最後再reverse
就好
1209. Remove All Adjacent Duplicates in String II - Medium
https://f88083.github.io/2024/08/21/1209-Remove-All-Adjacent-Duplicates-in-String-II-Medium/