Finally Merged update of advanced.cpp

This commit is contained in:
2023-09-26 16:16:09 +08:00
parent 3b277ce3eb
commit a0089654d6

View File

@ -33,12 +33,10 @@ void Execute(int row, int column) {
std::streambuf *old_input_buffer = std::cin.rdbuf(); std::streambuf *old_input_buffer = std::cin.rdbuf();
std::cin.rdbuf(iss.rdbuf()); // Redirect the input to the string, which std::cin.rdbuf(iss.rdbuf()); // Redirect the input to the string, which
// stores the output recently // stores the output recently
// debug: call PrintMap() to see the map
PrintMap();
ReadMap(); ReadMap();
std::cin.rdbuf(old_input_buffer); // Restore the input buffer std::cin.rdbuf(old_input_buffer); // Restore the input buffer
// PrintMap(); // These two lines may help you debug PrintMap(); // These two lines may help you debug
// std::cout << std::endl; std::cout << std::endl;
} }
int main() { int main() {