LeetCode 打卡 Day 61 —— 283. 移动零

1. 题目

LeetCode 打卡 Day 61 —— 283. 移动零_第1张图片

2. 题解

首先想到的是最直接基础的解题方法,遍历整个数组,将为0的元素从数组中删除,之后在数组末尾插入0

func moveZeroes(nums []int)  {
    l:=len(nums)
    for i:=0; i

你可能感兴趣的:(LeetCode,Go,leetcode,golang)