摘要: 暴力 class Solution { public: int maxLengthBetweenEqualCharacters(string s) { map<char, int> mp; int ans = -1; for(int i=1; i<=s.size(); i++){ if(mp[s[i 阅读全文
posted @ 2020-10-21 09:28 CrosseaLL 阅读(76) 评论(0) 推荐(0) 编辑