diff --git a/algorithms/arrays/move_zeros.py b/algorithms/arrays/move_zeros.py index 606afbfd5..5fca56aa8 100644 --- a/algorithms/arrays/move_zeros.py +++ b/algorithms/arrays/move_zeros.py @@ -23,4 +23,5 @@ def move_zeros(array): return result -print(move_zeros([False, 1, 0, 1, 2, 0, 1, 3, "a"])) \ No newline at end of file +if __name__ == "__main__": + print(move_zeros([False, 1, 0, 1, 2, 0, 1, 3, "a"]))