Leetcode-283-move-zeroes | 移动零 发表于 2020-02-07 更新于 2022-04-27 分类于 LeetCode-Solutions 阅读次数: 本文字数: 231 阅读时长 ≈ 1 分钟 题目 leetcode中国 解题1234567891011121314func moveZeroes(nums []int) { index := 0 //1,先将非0的数排到数组前面 for _,v := range nums { if v != 0 { nums[index] = v index++ } } //2,再排是0的数到nums数组后面 for i:=index;i<len(nums);i++ { nums[i] = 0 }} ------ 本文结束------ 如果本篇文章对你有帮助,可以给作者加个鸡腿~(*^__^*),感谢鼓励与支持! 打赏 微信支付 支付宝 本文作者: Neo Zhang 本文链接: https://octopuslian.github.io/2020/02/07/leetcode-283-move-zeroes/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!