1208. Get Equal Substrings Within Budget - Medium
前往題目
想法
- 把
string
按照ascii
排序 - 雙
sliding window
把結果找出來
思路
我的想法太多餘了,其實就是簡單的sliding window
sliding window
- 每次循環更新當前總和
- 超過
maxCost
就移動左指針 - 更新結果
Code
1208. Get Equal Substrings Within Budget - Medium
https://f88083.github.io/2024/07/24/1208-Get-Equal-Substrings-Within-Budget/