摘要:
问题描述 解决方案 class Solution { public: bool containsNearbyDuplicate(vector& nums, int k) { unordered_map mii; for(int i=0;i 阅读全文
摘要:
问题描述 解决方案 阅读全文
摘要:
问题描述 解决方案 cpp class Solution { public: int firstUniqChar(string s) { unordered_map mci; for(int i=0;i 阅读全文
摘要:
问题描述 解决方案 渣方法解决的 阅读全文
摘要:
问题描述 解决方案 阅读全文
摘要:
问题描述 解决方案 下面两种方法的原理是相同的 cpp // class Solution { // public: // void rotate(vector& nums, int k) { // k%=nums.size(); // reverse(nums.begin(),nums.end() 阅读全文