移动零
function zeroMove(array) {
let len = array.length;
let j = 0;
for(let i=0;i
array.push(0);
array.splice(i,1);
i --;
j ++;
}
}
return array;
}