This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
320 lines (291 loc) · 8.58 KB
/
Main.java
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
package com.ematrix;
import java.util.Arrays;
import java.util.Iterator;
public class Main {
}
/* This code is contributed by Rajat Mishra */
// int mIndex=lIndex+rIndex-lIndex/2;
// while(lIndex<=rIndex){
// if(ary[mIndex]==srcIndex){
// return mIndex;
// }
// if (ary[mIndex]>srcIndex)
// return binarySearch(ary,lIndex,mIndex-1,srcIndex);
//
// return binarySearch(ary,mIndex+1,lIndex,srcIndex);
// }
//
// return -1;
// int numStr = str.length();
// int numPtn = ptn.length();
// int i = 0;
// int j = 0;
// int count;
// int startIndex = 0;
// int endIndex = 0;
// int minLength = numStr;
// boolean found = false;
// HashMap<Character, Integer> mpPtn = new HashMap<>();
//
// if (str.isEmpty() || ptn.isEmpty()) {
//
// return "";
// }
//
// for (int x = 0; x < numPtn; x++) {
// char c = ptn.charAt(x);
//
// mpPtn.put(c, mpPtn.getOrDefault(c, 0) + 1);
//
// }
//
// count = mpPtn.size();
//
// while (j < numStr) {
// char endChar = str.charAt(j++);
// if (mpPtn.containsKey(endChar)) {
// mpPtn.put(endChar, mpPtn.get(endChar) - 1);
// if (mpPtn.get(endChar) == 0) count-=1;
// }
//
// if (count > 0) continue;
//
// while (count == 0) {
// char startChar = str.charAt(i++);
// if (mpPtn.containsKey(startChar)) {
// mpPtn.put(startChar, mpPtn.get(startChar) + 1);
// if (mpPtn.get(startChar) > 0) count+=1;
// }
// }
//
// if ((j - i) < minLength) {
// startIndex = i;
// endIndex = j;
// minLength = (j - i);
// found = true;
// }
//
//
// }
//
// if (found) {
// return str.substring(startIndex-1, endIndex);
// } else {
// return "";
// }
// write your code here
//System.out.println(solution(1000));
// var fibNums = new ArrayList<Integer>();
// int prevFib=1,currentFib=2,n=0;
// int totalValue=0,evenTotal=0;
// fibNums.add(prevFib);
// fibNums.add(currentFib);
// totalValue=(prevFib+currentFib);
// while(totalValue<4000000){
// if(fibNums.get(n)%2==0){
// evenTotal+=fibNums.get(n);
// }
// n=n+1;
// int fibNewValue=(fibNums.get(n)+fibNums.get(n-1));
// totalValue=fibNums.get(n);
// fibNums.add(fibNewValue);
// }
// System.out.println(fibNums.toString());
// System.out.print(evenTotal);
// int n = 9;
// int count=0;
// System.out.println(fib(n));
//
// int x=16;
// System.out.println(x>>2);
//
// final int TIMES_TO_FLIP = 20;
// int heads = 0;
// int tails = 0;
// // Create a Random object
// Random random = new Random();
// for (int i = 0; i < TIMES_TO_FLIP; i++) {
// // 0 or 1
// int result = random.nextInt(2);
//
// if (result == 1) {
//
// heads++;
// } else {
//
// tails++;
// }
// }
// System.out.println("There were "
// + heads
// + " heads and "
// + tails
// + " tails");
// String txt = "Please locate where 'locate' occurs!";
// System.out.println(factorial(5)); // Outputs 7
//
// ArrayList<String> cars = new ArrayList<String>();
// cars.add("Volvo");
// cars.add("BMW");
// cars.add("Ford");
// cars.add("Mazda");
// Collections.sort(cars);
// for (String car:cars) {
// System.out.println(car);
// }
// HashMap<String, String> capitalCities = new HashMap<String, String>();
//
// // Add keys and values (Country, City)
// capitalCities.put("England", "London");
// capitalCities.put("Germany", "Berlin");
// capitalCities.put("Norway", "Oslo");
// capitalCities.put("USA", "Washington DC");
// System.out.println(capitalCities);
//
// ArrayList<String> cars = new ArrayList<String>();
// cars.add("Volvo");
// cars.add("BMW");
// cars.add("Ford");
// cars.add("Mazda");
//
// // Get the iterator
// Iterator<String> it = cars.iterator();
//
// // Print the first item
// System.out.println(it.next());
//
// while(it.hasNext()) {
// System.out.println(it.next());
// }
// Pattern pattern = Pattern.compile("w3schools", Pattern.CASE_INSENSITIVE);
// Matcher matcher = pattern.matcher("Visit W3Schools!");
// boolean matchFound = matcher.find();
// if(matchFound) {
// System.out.println("Match found");
// } else {
// System.out.println("Match not found");
// }
//
// ArrayList<Integer> numbers = new ArrayList<Integer>();
// numbers.add(5);
// numbers.add(9);
// numbers.add(8);
// numbers.add(1);
// numbers.forEach( (n) -> { System.out.println(n); } );
// int[] aryThree= new int[n+m];
// int i=0;
// int j=0;
// int k=0;
//
// while(i<n && j<m){
//
// if(aryOne[i]<=aryTwo[j]){
// aryThree[k++]=aryOne[i];
// i++;//1 2 3
// //1 2 4
// }else{
// aryThree[k++]=aryTwo[j];
// //0 2
// j++;//1 2 3
// }
// //ary3 0 2 2 4 5
// }
// if(n > i){
// for(;i<n;i++){
// aryThree[k++]=aryOne[i];
// }
// }
// if(m > j){
// for(;j<n;j++){
// aryThree[k++]=aryOne[j];
// }
// }
// for(int item : aryThree )
// System.out.println(item);
//
// int[] aryOne ={8,5,7,1,2,4,6,8};//7
// int[] aryTwo ={3,5,6,0,2,5};//5
// ArrayList<Integer> aryThree= new ArrayList<Integer>();
// for(int item : aryOne){
// aryThree.add(item);
// }
// for(int item : aryTwo){
// aryThree.add(item);
// }
// Collections.sort(aryThree);
// for( Integer item: aryThree ){
// System.out.println(item);
// }
//
//
// static int fib(int n)
// {
//
// if (n <= 1)
// return n;
// return fib(n-1) + fib(n-2);
// }
//
//
// static Integer solution(int n) {
// var c = 0;
// for (var i=1; i < n; i++) {
// if (0 == i % 3 || 0 == i % 5)
// c+= i;
// }
// return c;
// }
//
// private static long factorial(int n)
// {
// long answer;
// System.out.println(n);
// if (n == 1)
// return 1;
// else
// answer =n * factorial(n-1);
// System.out.println(n);
// System.out.println(answer);
// return answer;
// }
// private static double empSalaryCalculator(double newNumberOfHoursPerWeek,
// double newSalaryPerHour,
// double newVacationDaysTaken){
// double grossAnnualSalary=0.0;
// if(newNumberOfHoursPerWeek!=0.0 && newSalaryPerHour!=0.0 ){
// grossAnnualSalary=(
// ((TOTAL_WEEKS*newNumberOfHoursPerWeek)- getVacationHours(newVacationDaysTaken))
// *newSalaryPerHour);
// }
// return grossAnnualSalary;
// }
// private static double getVacationHours(double newVacationDaysTaken){
// int VACATION_DAYS_HOURS = 8;
// return (newVacationDaysTaken* VACATION_DAYS_HOURS);
// }
// int strL=newStr.length();
// StringBuilder result = new StringBuilder();
//
// if(strL<=0){
// return "";
// }
//
// for(int i=0;i<strL;i++){
// if(strL>i+1){
// int one = Character.getNumericValue(newStr.charAt(i));
// int two = Character.getNumericValue(newStr.charAt(i+1));
//
// if((one%2)==0&&(two%2)==0){
// //even numbers
// result.append(newStr.charAt(i)).append("*");
// continue;
// }
// if((one%2)>0&&(two%2)>0){
// //even odd
// result.append(newStr.charAt(i)).append("-");
// continue;
// }
// }
// result.append(newStr.charAt(i));
// }
// return result.toString();