From 155c1a0d12028e25f51d6bfbc5216ce4df9f9050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C5=9F=C4=B1nsu=20Ar=C4=B1c=C4=B1?= Date: Sun, 16 Jan 2022 20:37:26 +0300 Subject: [PATCH] 1470 --- E_1470_ShuffleTheArray.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 E_1470_ShuffleTheArray.java diff --git a/E_1470_ShuffleTheArray.java b/E_1470_ShuffleTheArray.java new file mode 100644 index 0000000..c9cbfbd --- /dev/null +++ b/E_1470_ShuffleTheArray.java @@ -0,0 +1,12 @@ +public class Solution { + public int[] shuffle(int[] nums, int n) { + int[] sonuc = new int[nums.length]; + int i=0; + for(int j=0;j