Skip to content

Commit

Permalink
修改错别字“路径”
Browse files Browse the repository at this point in the history
  • Loading branch information
DUTRB committed Oct 12, 2023
1 parent f555182 commit 2841431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0797.所有可能的路径.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]); // 遍历到的节点加入到路径中来
Expand Down

0 comments on commit 2841431

Please sign in to comment.