#include #include #include #include #include using namespace std; class StepsConstruct { public: string construct(vector board, int k); }; string StepsConstruct::construct(vector board, int k) { return ""; }