Selaa lähdekoodia

Update README.md

Git-Leon 6 vuotta sitten
vanhempi
commit
35665ea078
No account linked to committer's email
1 muutettua tiedostoa jossa 30 lisäystä ja 0 poistoa
  1. 30
    0
      README.md

+ 30
- 0
README.md Näytä tiedosto

35
 
35
 
36
 ## Example 1
36
 ## Example 1
37
 * Sample Script
37
 * Sample Script
38
+
38
     ```
39
     ```
39
     // : Given
40
     // : Given
40
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
41
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
48
     ```
49
     ```
49
 
50
 
50
 * Sample Output
51
 * Sample Output
52
+
51
     ```
53
     ```
52
     [23,23,56,57,58]
54
     [23,23,56,57,58]
53
     ```
55
     ```
54
     
56
     
57
+    
58
+    
55
 
59
 
56
 ## Example 2
60
 ## Example 2
57
 * Sample Script
61
 * Sample Script
62
+
58
     ```
63
     ```
59
     // : Given
64
     // : Given
60
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
65
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
68
     ```
73
     ```
69
 
74
 
70
 * Sample Output
75
 * Sample Output
76
+
71
     ```
77
     ```
72
     [1,1,1,23,23]
78
     [1,1,1,23,23]
73
     ```
79
     ```
74
     
80
     
81
+    
82
+    
75
 
83
 
76
 ## Example 3
84
 ## Example 3
77
 * Sample Script
85
 * Sample Script
86
+
78
     ```
87
     ```
79
     // : Given
88
     // : Given
80
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
89
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
88
     ```
97
     ```
89
 
98
 
90
 * Sample Output
99
 * Sample Output
100
+
91
     ```
101
     ```
92
     [1, 1, 2, 4, 4, 5, 5, 5, 5]
102
     [1, 1, 2, 4, 4, 5, 5, 5, 5]
93
     ```
103
     ```
115
 
125
 
116
 ## Example 1
126
 ## Example 1
117
 * Sample Script
127
 * Sample Script
128
+
118
     ```
129
     ```
119
     // : Given
130
     // : Given
120
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
131
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
127
     System.out.println(Arrays.toString(actual));
138
     System.out.println(Arrays.toString(actual));
128
     ```
139
     ```
129
 
140
 
141
+
142
+
130
 * Sample Output
143
 * Sample Output
144
+
131
     ```
145
     ```
132
     []
146
     []
133
     ```
147
     ```
137
 
151
 
138
 ## Example 2
152
 ## Example 2
139
 * Sample Script
153
 * Sample Script
154
+
140
     ```
155
     ```
141
     // : Given
156
     // : Given
142
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
157
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
149
     System.out.println(Arrays.toString(actual));
164
     System.out.println(Arrays.toString(actual));
150
     ```
165
     ```
151
 
166
 
167
+
168
+
152
 * Sample Output
169
 * Sample Output
170
+
153
     ```
171
     ```
154
     [2]
172
     [2]
155
     ```
173
     ```
158
 
176
 
159
 ## Example 3
177
 ## Example 3
160
 * Sample Script
178
 * Sample Script
179
+
161
     ```
180
     ```
162
     // : Given
181
     // : Given
163
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
182
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
170
     System.out.println(Arrays.toString(actual));
189
     System.out.println(Arrays.toString(actual));
171
     ```
190
     ```
172
 
191
 
192
+
193
+
173
 * Sample Output
194
 * Sample Output
195
+
174
     ```
196
     ```
175
     [1,1,2,4,4]
197
     [1,1,2,4,4]
176
     ```
198
     ```
189
 
211
 
190
 ## Example 1
212
 ## Example 1
191
 * Sample Script
213
 * Sample Script
214
+
192
     ```
215
     ```
193
     // : Given
216
     // : Given
194
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
217
     Integer[] array = new Integer[]{0, 0, 0, 1, 1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5};
204
     System.out.println(Arrays.toString(actual));
227
     System.out.println(Arrays.toString(actual));
205
     ```
228
     ```
206
 
229
 
230
+
231
+
207
 * Sample Output
232
 * Sample Output
233
+
208
     ```
234
     ```
209
     [1,1,2,4,4]
235
     [1,1,2,4,4]
210
     ```
236
     ```
212
 
238
 
213
 ## Example 2
239
 ## Example 2
214
 * Sample Script
240
 * Sample Script
241
+
215
     ```
242
     ```
216
     // : Given
243
     // : Given
217
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
244
     Integer[] array = new Integer[]{1,1,1,23,23,56,57,58};
227
     System.out.println(Arrays.toString(actual));
254
     System.out.println(Arrays.toString(actual));
228
     ```
255
     ```
229
 
256
 
257
+
258
+
230
 * Sample Output
259
 * Sample Output
260
+
231
     ```
261
     ```
232
     [23,23,56,57,58]
262
     [23,23,56,57,58]
233
     ```
263
     ```