每日一練——從長度爲n的數組裏選出m個數使和爲固定值sum

這個問題是我從leetcode上一道問題所想到的,原題:若是是從數組中選出2個數相加使之成爲固定的數sum,這固然很簡單,把數組中的數字遍歷一遍,判斷另外一個數字是否也在數組中便可。代碼以下。html vector<int> twoSum(vector<int>& nums, int target) { vector<int> result; map<int, in
相關文章
相關標籤/搜索