Merge pull request #1296 from languagege/master

修正了其中一个错别字
This commit is contained in:
程序员Carl 2022-05-27 09:58:51 +08:00 committed by GitHub
commit 4f94d8a1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public:
**双指针法(快慢指针法)在数组和链表的操作中是非常常见的,很多考察数组、链表、字符串等操作的面试题,都使用双指针法。**
都会一一介绍到,本题代码如下:
都会一一介绍到,本题代码如下:
```CPP
// 时间复杂度O(n)