摘要: 今天在leetcode写了一个题 两数之和 这是AC代码 class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { vector<int> a; map<int,int> p; for (int i=0; 阅读全文
posted @ 2021-09-15 17:00 Kaiser- 阅读(378) 评论(0) 推荐(0) 编辑