mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-22 16:31:15 -04:00
Update array-move-zeros-inplace.py
This commit is contained in:
parent
e96bf43463
commit
3b218fae01
1 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# author: bt3gl
|
||||
|
||||
|
||||
'''
|
||||
Given an integer array nums, move all 0's to the end of it while
|
||||
maintaining the relative order of the non-zero elements.
|
||||
|
@ -39,4 +44,4 @@ def move_zeroes(nums: list[int]) -> list[int]:
|
|||
if __name__ == "__main__":
|
||||
|
||||
nums = [0,1,0,3,12]
|
||||
assert(move_zeroes(nums) == [1,3,12,0,0])
|
||||
assert(move_zeroes(nums) == [1,3,12,0,0])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue