1. 吹长排蜡烛
2. 闭眼铲钱
3. 推硬币或圣诞树到相应的线里,可以拿到相应线里的奖品,就跟冰球一样
相关文章
those times.
i was never meant to leave
but our path towards so differently
you came back and ask me,
i said no sadly....
but today everything reminds me of you weirdly.
so weird.
so weird.
nice to say good bye.
sad to say hi.
i was happy to meet you
i was sad to leave.
as i watch the road fade away when sitiing at back of your bike seat,
as i watch the snow flying down the street.
as i keep our memories always in my heart.
as i want to be back, and it's not going to happen.
times go around and around.
days go day by day.
i never had chance to talk with you again.
i never want us to break up, you know that.
I was never fall in love with you,
until time makes me do.
you said don't like me anymore,
i said please don't go,
and today everything reminds me of you again.
again and again.
again and again.
it was nice to say hi.
sad and say goodbye.
i was happy to meet you
i was sad to leave.
as i watch the road fade away when sitiing at back of your bike seat,
as i watch the snow flying down the street.
as i keep our memories always in my heart.
as i want to be back, and it's not going to happen.
times go around and around.
days go day by day.
i got a chance to talk with you again.
i never want us to break up, you know that.
把数组左边的0都右移,然后排序非零数
/**
* @param {number[]} nums
* @return {void} Do not return anything, modify nums in-place instead.
*/
var moveZeroes = function(nums) {
nums=nums.sort((a,b)=>a-b)
let count=0;
for(let num of nums){
if(num===0){
count++
}
}
console.log(count)
for(let i=0;i<nums.length;i++){
if(nums[i+count]){
nums[i]=nums[i+count]
}else{
nums[i]=0
}
}
return nums;
};
console.log(moveZeroes([0,1]))
console.log(moveZeroes([0,1,0,3,12]))