복기- 코드C++ 17 #include #include #include #include #include using namespace std; int N;set WordSet; bool Check(string& word){ // WordSet에 있는 모든 단어와 확인한다. for (const string& src : WordSet) { if (word.size() != src.size()) continue; for (int i = 0; i < word.size(); ++i) { if (src == word) return true; // 단어 크기만큼 단어를 돌려본다. rotate(word.begin(), word.begin() + 1, word.end()); } } return false;} int mai..