Skip to content

Commit a69d178

Browse files
aQuaaQua
aQua
authored and
aQua
committed
修改错别字
1 parent ced980c commit a69d178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithms/0024.swap-nodes-in-pairs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Given 1->2->3->4, you should return the list as 2->1->4->3.
99
Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.
1010

1111
## 解题思路
12-
利用递归,可以简介明了完成程序。详见程序注释。
12+
利用递归,可以简洁明了地完成程序。详见程序注释。
1313

1414
## 总结
1515

0 commit comments

Comments
 (0)