摘要: [0001.两数之和] 不会用 map。。。后面再看 先放着 C++代码: class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { std::unordered_map <int, int> map; 阅读全文
posted @ 2022-11-08 20:03 跬步瑶 阅读(31) 评论(0) 推荐(0)
摘要: [0349.两个数组的交集] class Solution { public: vector<int> intersection(vector<int>& nums1, vector<int>& nums2) { vector<int> result (1000 , 0); int k = 0; f 阅读全文
posted @ 2022-11-08 17:02 跬步瑶 阅读(36) 评论(0) 推荐(0)