-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackerrank.js
310 lines (269 loc) · 7.04 KB
/
hackerrank.js
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
// function getTotalX(a, b) {
// let validCount = 0;
// for (let x = 1; x <= 100; x++) {
// if (a.every(int => (x % int == 0))) {
// if (b.every(int => (int % x == 0))) {
// validCount++;
// }
// }
// }
// return validCount;
// }
// console.log(getTotalX([2,4],[4,8,16]))
// NOT DONE YET
// function dayOfProgrammer(year) {
// if (year > 1918 && year % 4 === 0 || (year < 1918 && year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0))) {
// return `12.09.${year}`
// } else if (year === 1918) {
// return `26.09.1918`
// } else {
// return `13.09.${year}`
// }
// }
// console.log(dayOfProgrammer(1800))
// function countingValleys(n, s) {
// let seaLevel = 0;
// let valley = 0;
// for (let i = 0; i < s.length; i++) {
// if (s[i] === 'U') {
// seaLevel += 1;
// } else {
// seaLevel -= 1;
// }
// if (s[i] === 'U' && seaLevel === 0){
// valley += 1;
// }
// } return valley
// }
// console.log(countingValleys(8,['U','D','D','D','U','D','U','U']))
// let kb = [40, 50, 60];
// let usb = [5, 8, 12];
// let b = 60;
// function getMoneySpent(keyboards, drives, b) {
// var best = -1
// keyboards.sort((a, b) => b - a)
// drives.sort((a, b) => a - b)
// for (var i = 0, j = 0; i < keyboards.length; i += 1){
// for (; j < drives.length; j += 1){
// let combined = keyboards[i] + drives[j]
// if (combined > b) break //need to break so j would not increase
// combined > best ? best = combined : null
// }
// }
// return best
// }
// console.log(getMoneySpent(kb, usb, b))
// console.log(kb.sort().reverse())
// function asd(x) {
// x > 18 ? console.log('over 18') : console.log('nono')
// }
// asd(23)
// function catAndMouse(x, y, z) {
// if (Math.abs(y - z) > Math.abs(x - z)) {
// return `Cat A`
// } else if (Math.abs(y - z) < Math.abs(x - z)){
// return `Cat B`
// } else if (Math.abs(y - z) === Math.abs(x - z)){
// return `Mouse C`
// }
// }
// console.log(catAndMouse(2,5,4))
// console.log(catAndMouse(1,2,3))
// console.log(catAndMouse(1,3,2))
// function list(names) {
// let answer = '';
// for (let i = 0; i < names.length; i++) {
// if (i < names.length - 2) {
// answer += names[i].name + ', '
// } else if (i === names.length - 2) {
// answer += names[i].name + ' & '
// } else if (i === names.length - 1) {
// answer += names[i].name
// }
// } return answer
// }
// console.log(list([{ name: 'Bart' }, { name: 'Lisa' }, { name: 'Maggie' }]))
// function generateHashtag(str) {
// let splittedStr = str.split(' ');
// let answer = '#'
// if (str.length > 139) {
// answer = false;
// } else if (str.length === 0) {
// answer = false;
// } else {
// for (let i = 0; i < splittedStr.length; i++) {
// answer += splittedStr[i][0].toUpperCase() + splittedStr[i].slice(1);
// }
// }
// return answer
// }
// console.log(generateHashtag('asd asd'))
// function pageCount(n, p) {
// let openCounter = 0;
// if ((n-p) < (0+p)) {
// openCounter += n-1-p;
// } else {
// openCounter += -1+p;
// }
// return openCounter;
// }
// function pageCount(n, p) {
// /*
// n: the number of pages in the book
// p: the page number to turn to
// */
// const pageTurns = Math.floor(p / 2);
// const totalTurns = Math.floor(n / 2);
// /* Returns the total number of page turns it takes to get
// to a page or how many it requires if starting from the back */
// return Math.min(pageTurns, totalTurns - pageTurns);
// }
// console.log(pageCount(6,2))
// function utopianTree(n) {
// let answer = 1;
// for (let i = 1; i <= n; i++) {
// if(i%2===0){
// answer += 1
// } else {
// answer = answer*2
// }
// }
// return answer;
// }
// console.log(utopianTree(1))
// console.log(utopianTree(2))
// console.log(utopianTree(3))
// console.log(utopianTree(5))
// function repeatedString(s, n) {
// let answer = '';
// let counter = 0;
// for (let i = 0; i < n; i++) {
// answer += s
// }
// for (let j = 0; j < answer.length; j++) {
// if (answer[j]==='a'){
// counter++
// }
// } return counter
// }
// function rotLeft(a, d) {
// let answer = [];
// for (let i = b; i < a.length; i++) {
// answer.push(a[i]);
// }
// for (let j = 0; j < b; j++) {
// answer.push(a[j]);
// } return answer
// }
// function reverseArray(a) {
// let answer = '';
// for (let i=a.length-1; i>=0; i--){
// answer+= `${a[i]} `
// }return answer
// }
// console.log(reverseArray([1,2,3]))
// let obj = { 'a': 1, 'b': 2, 'c': 3 }
// let objb = { 'a': 1, 'b': 2, 'c': 3 }
// for (char in obj) {
// if (obj[char] === objb[char]) {
// console.log('yes')
// }
// }
// function fibonacci(n) {
// let num = 0;
// let answer = []
// for (let i = 0; i <=n; i++) {
// if (i >= 2) {
// num += answer[i - 2] + answer[i - 1]
// answer.push(num)
// num = 0
// } else {
// answer.push(i)
// }
// } return answer[n]
// }
// console.log(fibonacci(6))
// console.log(fibonacci(3))
let ls = [0, 1, 3, 6, 10]
// let answer = [];
// function partsSums(array) {
// let input = [];
// let sum = 0;
// for (let i = 0; i < array.length; i++) {
// sum += array[i];
// input.push(array[i]);
// }
// answer.push(sum);
// if (array.length > 0) {
// partsSums(array.splice(1));
// } else {
// return [0];
// }
// console.log(answer)
// }
// function partsSums(ls) {
// let answer = [0];
// let array = []
// for (let i = ls.length - 1; i >= 0; i--) {
// array.push(ls[i])
// }
// array.forEach(element => {
// answer.push(answer[answer.length-1]+element)
// console.log(answer,array)
// });
// return answer.reverse()
// }
// // console.log(partsSums(ls))
// // console.log(partsSums([]))
// console.log(partsSums([1, 2, 3, 4, 5, 6]))
// function tictac(matrix) {
// let counter1 = 0;
// let counter2 = 0;
// let coord1 = [];
// let coord2 = [];
// for (let i = 0; i < matrix.length; i++) {
// for (let j = 0; j < matrix.length; j++) {
// if (matrix[i][j] === 1) {
// coord1.push([i, j])
// } else if (matrix[i][j] === 2) {
// coord2.push([i, j])
// }
// // else if (matrix[i][j] === 0) {
// // return -1
// // }
// }
// }
// // console.log(coord1[0][0])
// // for (let k = 0; k < coord1.length; k++) {
// if (coord1.includes([1, 1])) {
// console.log(asd)
// }
// // }
// // console.log(coord1, coord2)
// }
// let asd = [[1, 2], [3, 4]]
// console.log(asd.includes(1, 2))
// tictac(
// [
// [1, 2, 1],
// [2, 1, 2],
// [2, 1, 1]
// ])
// function antiDiag(matrix) {
// let sum = 0;
// for (let i = matrix.length - 1; i >= 0; i--) {
// sum += matrix[i][matrix.length-i-1]
// }
// return sum / matrix.length
// }
// console.log(antiDiag([
// [1, 2, 3],
// [3, 4, 6],
// [5, 2, 5]
// ]))
// console.log(antiDiag([
// [3, 5, 11, -2],
// [3, 1, 7, 4],
// [5, 0, 2, 9],
// [21, 7, 8, 2]
// ]))