Algorithm
leetcode_面试题 10.02. 变位词组
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| class Solution { public: vector<vector<string>> groupAnagrams(vector<string>& strs) { unordered_map<string, vector<string>> mp; for (string& str: strs) { string key = str; sort(key.begin(), key.end()); mp[key].emplace_back(str); } vector<vector<string>> ans; for (auto it = mp.begin(); it != mp.end(); ++it) { ans.emplace_back(it->second); } return ans; } };
|
Review
TED演讲-如果幸福可以衡量,你的幸福得分是多少?
我们可以换个角度思考我们是否幸福,我们可以自己决定自己是否幸福
Tips
5个案例让Python输出漂亮的表格
Linux生成core文件、core文件路径设置
Share
Python表格输出长数据自动换行[最佳实践]