题解 | #移动 0#

移动 0

https://www.nowcoder.com/practice/102586387caa4afcbad6f96affce9780

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param nums int整型一维数组 
# @return int整型一维数组
#
class Solution:
    def moveZeroes(self , nums: List[int]) -> List[int]:
        # write code here
        for i in nums:
            #遍历元素
            if i == 0:
                nums.remove(i)#如果元素等于0,则移除元素
                nums.append(0)#在最后面加0
        return nums

全部评论

相关推荐

10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务