diff --git "a/problems/0797.\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md" "b/problems/0797.\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md" index bcce931476..05b55b5b16 100644 --- "a/problems/0797.\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md" +++ "b/problems/0797.\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md" @@ -89,7 +89,7 @@ if (x == graph.size() - 1) { // 找到符合条件的一条路径 for (int i = 0; i < graph[x].size(); i++) { // 遍历节点n链接的所有节点 ``` -接下来就是将 选中的x所连接的节点,加入到 单一路劲来。 +接下来就是将 选中的x所连接的节点,加入到 单一路径来。 ```C++ path.push_back(graph[x][i]); // 遍历到的节点加入到路径中来