leetcode 18:四數之和

四數之和與兩數之和,三數之和leetcode 15類似,最後都要到兩數之和,通過s++,t--來降低時間複雜度 std::vector<std::vector<int>> fourSum(std::vector<int>& nums, int target) { std::vector<std::vector<int>> a; std::vector<int> b; if(
相關文章
相關標籤/搜索