mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 11:34:46 +08:00
Update 0027.移除元素.md
This commit is contained in:
@ -215,7 +215,7 @@ class Solution:
|
|||||||
```
|
```
|
||||||
|
|
||||||
``` python 3
|
``` python 3
|
||||||
(版本二)暴力递归法
|
(版本二)暴力法
|
||||||
class Solution:
|
class Solution:
|
||||||
def removeElement(self, nums: List[int], val: int) -> int:
|
def removeElement(self, nums: List[int], val: int) -> int:
|
||||||
i, l = 0, len(nums)
|
i, l = 0, len(nums)
|
||||||
|
Reference in New Issue
Block a user