摘要: class Solution {public: vector<int> twoSum(vector<int>& nums, int target) { int n=nums.size(); int i,j; vector<int> res(2); for (i=0;i<n-1;i++){ for ( 阅读全文
posted @ 2019-06-05 23:14 gale13 阅读(63) 评论(0) 推荐(0)