:warning: math/get_monomials.hpp

Code

#pragma once
#include<vector>
#include<numeric>

// pws[i] = i^d (0 <= i < n)
template<typename T>
std::vector<T> get_monomials(long long d, int n) {
    
}
#line 2 "math/get_monomials.hpp"
#include<vector>
#include<numeric>

// pws[i] = i^d (0 <= i < n)
template<typename T>
std::vector<T> get_monomials(long long d, int n) {
    
}
Back to top page