// UMBC - CMSC 341 - Spring 2024 - Proj0 #include "puzzle.h" Puzzle::Puzzle(int rows, int cols){ } Puzzle::~Puzzle(){ } void Puzzle::clear(){ } bool Puzzle::reCreate(int rows, int cols, int seed){ } void Puzzle::fill(int seed){ } Puzzle::Puzzle(const Puzzle& rhs){ } const Puzzle& Puzzle::operator=(const Puzzle& rhs){ } bool Puzzle::appendRight(const Puzzle& rhs){ } bool Puzzle::appendBottom(const Puzzle& bottom){ } void Puzzle::dump(){ int i=0; int j=0; cout << " "; for (int k=0;k