Update 0027.移除元素.md

This commit is contained in:
jianghongcheng
2023-05-03 15:08:17 -05:00
committed by GitHub
parent 424d5c224f
commit 53fbfc8339

View File

@ -215,7 +215,7 @@ class Solution:
```
``` python 3
(版本二)暴力递归
(版本二)暴力法
class Solution:
def removeElement(self, nums: List[int], val: int) -> int:
i, l = 0, len(nums)