摘要: 1160. 拼写单词 map映射字符个数比较: class Solution { public: int countCharacters(vector<string>& words, string chars) { map<char,int>mp; for(int i=0;i<chars.lengt 阅读全文
posted @ 2020-06-17 20:55 branna 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 88. 合并两个有序数组 合并再sort: class Solution { public: void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) { int ops=m; nums1.erase(nums1.begin() 阅读全文
posted @ 2020-06-17 20:16 branna 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 80. 删除排序数组中的重复项 II class Solution { public: int removeDuplicates(vector<int>& nums) { if(nums.size()==0) return 0; if(nums.size()==1) return 1; int an 阅读全文
posted @ 2020-06-17 19:14 branna 阅读(223) 评论(0) 推荐(0) 编辑