Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C ++では、関数への入力として配列を指定することは可能ですか。
ほとんどの場合、これはすべてベクトルで行うことができます。
#include <vector> std::vector<int> function_name(const std::vector<int>& A, const std::vector<int>& B);