摘要:
#include <iostream> #include <vector> #include <cstring> using namespace std; const int _max = 350; int c1[_max], c2[_max];//c1[i]:当前多项式x^i的系数 vector< 阅读全文
2020年3月17日 #
摘要:
#include <iostream> #include <vector> #include <cstring> using namespace std; const int _max = 60; int c1[_max], c2[_max];//c1[i]:当前多项式x^i的系数 vector<i 阅读全文
摘要:
public class Solution { /** * @param candidates: A list of integers * @param target: An integer * @return: A list of lists of integers */ public List< 阅读全文