-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathque.java
More file actions
467 lines (421 loc) · 12.2 KB
/
que.java
File metadata and controls
467 lines (421 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
// import java.util.Scanner;
// public class que {
// char a;
// public static void main(String[] args) {
// Scanner sc =new Scanner(System.in);
// System.out.println("Enter a character:");
// char a = sc.next().charAt(0);
// if (a>=97 && a <=122)
// {
// System.out.println("1");
// }
// else if(a>=65 && a<=90)
// {
// System.out.println("0");
// }
// else
// {
// System.out.println("-1");
// }
// sc.close();
// }
// }
//////////////////////////////////////////////////////
// WAP A PROGRAM FOR ROCK PAPER SCISOR GAME //
// import java.util.Random;
// import java.util.Scanner;
// public class que
// {
// public static void main(String[] args) {
// System.out.println("choose any number:\n0->rock\n1->Paper\n2->sceasor");
// Scanner sc=new Scanner(System.in);
// int a=sc.nextInt();
// if (a < 3) {
// if(a==0)
// {
// System.out.println("You choose Rock");
// }
// else if(a==1)
// {
// System.out.println("You choose paper");
// }
// else if(a==2)
// {
// System.out.println("You choose sceasor");
// }
// else
// {
// System.out.println("Enter specific number");
// }
// Random ran=new Random();
// int ran_int1 =ran.nextInt(3);
// if(ran_int1==0)
// {
// System.out.println("Computer choose Rock");
// }
// else if (ran_int1==1)
// {
// System.out.println("Computer choose paper");
// }
// else
// {
// System.out.println("Computer choose sceasor");
// }
// if(a==0&&ran_int1==0|| a==1&&ran_int1==1||a==2&&ran_int1==2)
// {
// System.out.println("Match draw");
// }
// else if(a==0&&ran_int1==2 ||a==1&&ran_int1==0||a==2&&ran_int1==1)
// {
// System.out.println("You win");
// }
// else
// {
// System.out.println("Computer win");
// }
// }
// else
// {
// System.out.println("Input is invalid.");
// }
// }
// }
// FIND A UNIQUE NUMBER IN THE GIVEN ARRAY WHERE ALL THE ELEMENTS ARE BEING REPEATED TWICE WITH ONE VALUE BEING UNIQUE //
// import java.util.Scanner;
// public class que
// {
// public static void main(String[] args) {
// int a=0;
// Scanner sc = new Scanner(System.in);
// int []num={2,4,2,6,7,4,7,9,10};
// for(int i=0;i<num.length;i++)
// {
// a = 0;
// for(int j=0;j<num.length;j++)
// {
// if(num[i]==num[j])
// {
// a=a+1;
// }
// }
// if(a%2!=0)
// {
// System.out.println(num[i]);
// // break;
// }
// }
// sc.close();
// }
// }
// REVERSE OF AN ARRAY //
// import java.util.Arrays;
// import java.util.Scanner;
// public class que {
// public static void main(String[] args) {
// Scanner sc = new Scanner(System.in);
// System.out.println("Enter the element which you want to reverse :");
// char[] num = sc.next().toCharArray();
// System.out.println(Arrays.toString(num));
// int c = num.length - 1;
// char array1[] = new char[c+1];
// for (int i = 0; i <num.length; i++) {
// array1[c] = num[i];
// c--;
// }
// for (int i = 0; i <num.length; i++) {
// System.out.println(array1[i]);
// }
// int flag=1;
// for(int i=0;i<num.length;i++)
// {
// if(array1[i]==num[i])
// {
// flag=1;
// }
// else
// {
// flag=0;
// break;
// }
// }
// if(flag==1)
// {
// System.out.println("palindrome");
// }
// else{
// System.out.println("not palindrome");
// }
// }
// }
///////////////////////////////////////////
// System.out.print("Enter a string : ");
// String str = sc.next();
// String str1 = "";
// int len = str.length();
// for (int i = len - 1; i >= 0; i--) {
// str1 += str.charAt(i);
// }
// System.out.println(str1);
// int flag = 1;
// for (int i = 0; i < len; i++) {
// if (str.charAt(i) == str1.charAt(i)) {
// flag = 1;
// } else {
// flag = 0;
// break;
// }
// }
// if (flag == 1) {
// System.out.println("Palindrome");
// } else {
// System.out.println("Not palindrome");
// }
// }
// }
//
/////////////////////////////////////////////////////
/// TO FIND LAST REPEATED ELEMENT //
// public class que
// {
// public static void main(String[] args) {
// int c=-1;
// int []num={2,4,2,6,6,4,7,9,6};
// int b=num.length;
// for(int i=0;i<b;i++)
// {
// for(int j=i+1;j<b;j++)
// {
// if(num[i]==num[j])
// {
// c =num[i];
// }
// }
// }
// System.out.println(c);
// }
//
///////////////////////////////////////////////////////////
// import java.util.Scanner;
// public class que
// {
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// System.out.println("Enter an integer");
// int a=sc.nextInt();
// int b= Integer.reverse(a);
// System.out.println(b);
// }
// }
/////////////////////////////////////////////////////
// WAP TO SHIFT THE NUMBER IN AN ARRAY NUMBER OF TIMER USER WANTS AND FHIFT THAT NUMBER TO THE END OF THE ARRAY //
/////////////////////////////////////////////////////
// import java.util.Arrays;
// import java.util.Scanner;
// public class que
// {
// public static void main(String[] args) {
// Scanner sc= new Scanner(System.in);
// System.out.println("Enter the no. fo times you want to shift");
// int k=sc.nextInt();
// System.out.println("Enter the size of the num");
// int size=sc.nextInt();
// System.out.println("Enter the element of the num");
// int num[]=new int[size];
// for(int i=0;i<size;i++)
// {
// num[i]=sc.nextInt();
// }
// while(k>0)
// {
// int first=num[0];
// for(int i=0;i<size-1;i++)
// {
// num[i]=num[i+1];
// }
// num[size-1]=first;
// k--;
// }
// System.out.println(Arrays.toString(num));
// sc.close();
// }
// }
/////////////////////////////////////////////
// WAP TO ARRAENGE THE ELEMENT IN ODD AND EVEN FORM IE. FIRST ALL THE EVEN ELEMENT THAN ALL THE ODD ELEMENT WITHOUT CHANGING THERE ORDER //
/////////////////////////////////////////////
// import java.util.Arrays;
// public class que
// {
// public static void main(String[] args) {
// int num[]={1,4,8,3,5,9,6};
// int flag=0;
// int size= num.length;
// int array1[]=new int[size];
// for(int i=0;i<size;i++)
// {
// if(num[i]%2==0)
// {
// array1[flag]=num[i];
// flag=flag+1;
// }
// }
// for(int i=0;i<size;i++)
// {
// if(num[i]%2!=0)
// {
// array1[flag]=num[i];
// flag=flag+1;
// }
// }
// System.out.println(Arrays.toString(array1));
// }
// }
// CHECK IF ARRAY IS IN ASSENDING ORDER OR NOT AFTER ROTATING SOME TIMES // (NOT COMPLETED)
// import java.util.Arrays;
// public class que
// {
// public static boolean main(String[] args) {
// int num[]={3,4,5,1,2};
// int len=num.length;
// int a=0;
// for(int i=0;i<len;i++)
// {
// if (num[i]==1)
// {
// break;
// }
// else
// {
// a=a+1;
// }
// }
// int k=a;
// while(k>0)
// {
// int first=num[0];
// for(int i=0;i<len-1;i++)
// {
// num[i]=num[i+1];
// }
// num[len-1]=first;
// k--;
// }
// int flag=0;
// for(int i=0;i<len-1;i++)
// {
// if(num[i]<num[i+1])
// {
// flag=1;
// }
// else{
// flag=0;
// break;
// }
// }
// if(flag==1)
// {
// return true;
// }
// else
// {
// return false;
// }
// }
// }
/// MAXIMUM CONSECUTIVE ONE IN AN ARRAY //
// public class que
// {
// public static void main(String[] args) {
// int array[]={1,0,1,1,0,1};
// int len =array.length;
// int flag=0;
// int count=0;
// for(int i=0;i<len;i++)
// {
// if(array[i]==1)
// {
// flag=flag+1;
// if(flag>=count)
// count=flag;
// }
// else
// {
// flag=0;
// }
// }
// System.out.println("Maximun consecutive one are :" + count );
// }
// }
// MOVING ALL ELEMENT TO THE END OF THE ARRAY //
// import java.util.Arrays;
// public class que
// {
// public static void main(String[] args) {
// int array[]={1,2,0,1,0,0,5,0};
// int len =array.length;
// int flag=0;
// for(int i=0;i<len;i++)
// {
// if(array[i]!=0)
// {
// array[flag]=array[i];
// flag=flag+1;
// }
// }
// for(int i=flag;i<len;i++)
// {
// array[i]=0;
// }
// System.out.println(Arrays.toString(array));
// }
// }
// TO FIND NTH LARGEST NUMBER IN AN ARRAY WHERE N IS SMALLLER THAN SIZE OF THE ARRAY //
// import java.util.Arrays;
// import java.util.Scanner;
// public class que
// {
// public static void main(String[] args) {
// int array[]={1,3,9,12,2,4,6,0};
// int len =array.length;
// Scanner sc=new Scanner(System.in);
// System.out.println("Enter the nth largest number:");
// int k=sc.nextInt();
// int temp=0;
// for(int i=0;i<len-1;i++)
// {
// for(int j=0;j<len-1-i;j++)
// {
// if(array[j]>array[j+1])
// {
// temp=array[j];
// array[j]=array[j+1];
// array[j+1]=temp;
// }
// }
// }
// System.out.println(array[k-1]);
// }
// }
import java.util.Arrays;
public class que
{
public static void main(String[] args) {
int array[]={1,1,2,2,2,3,3};
int size = array.length;
int count=0;
int flag=1;
for (int i=0;i<size-1;i++)
{
if(array[i]==array[i+1])
{
array[i]='_';
count =count +1;
}
else
{
flag=flag+1;
}
}
System.out.println(Arrays.toString(array));
System.out.println(flag);
}
}