#include "colorful_bricks.hpp" #include using namespace std; /* This is a skeleton implementation that simply prints out bricks and returns 0. It compiles, but doesn't work properly. However, it's a good starting point. */ int ColorfulBricks::countLayouts(const string &bricks) { cout << bricks << endl; return 0; }