添加 0027.移除元素.md C语言注释

This commit is contained in:
ArthurP
2021-08-31 12:34:01 +08:00
parent 14aee4922b
commit d65afddc91

View File

@ -260,7 +260,6 @@ int removeElement(int* nums, int numsSize, int val){
//最后慢指针的大小就是新的数组的大小
return slow;
}
```
-----------------------