leetcode763+貪心。map記錄每個字符最右邊的位置

https://leetcode.com/problems/partition-labels/ class Solution { public: vector<int> partitionLabels(string S) { map<char, int> d; for(int i=0; i<S.size(); i++){ d[S[i]
相關文章
相關標籤/搜索