From 78fc3b0acc3f72c62b11e0a7d55123afa6d0776f Mon Sep 17 00:00:00 2001 From: jiashiwei-521 <59610910+jiashiwei-521@users.noreply.github.com> Date: Sun, 12 Jan 2020 21:21:19 +0800 Subject: [PATCH] =?UTF-8?q?Create=20283.=20=E7=A7=BB=E5=8A=A8=E9=9B=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "283. \347\247\273\345\212\250\351\233\266" | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 "283. \347\247\273\345\212\250\351\233\266" diff --git "a/283. \347\247\273\345\212\250\351\233\266" "b/283. \347\247\273\345\212\250\351\233\266" new file mode 100644 index 00000000..e39ac7a1 --- /dev/null +++ "b/283. \347\247\273\345\212\250\351\233\266" @@ -0,0 +1,16 @@ +class Solution { + public void moveZeroes(int[] nums) { + + for(int i=nums.length-1;i>0;i--){ + for(int j=0;j