摘要: 27:简单题就是简单题 跟之前做的删重复的一样啊 class Solution(object): def removeElement(self, nums, val): """ :type nums: List[int] :type val: int :rtype: int """ i = 0 fo 阅读全文
posted @ 2021-09-04 15:39 yi术家 阅读(39) 评论(0) 推荐(0)