Skip to content

Commit 98dc4fb

Browse files
committedJan 18, 2021
Initial commit with algorithms list
1 parent ed9dd41 commit 98dc4fb

35 files changed

+826
-0
lines changed
 

‎ OddOccurrencesInArray.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let map = {};
4+
A.forEach(element => {
5+
if (map[element] === 1) {
6+
map[element] = 0;
7+
} else if(typeof map[element] === "undefined" || map[element] === 0) {
8+
map[element] = 1;
9+
}
10+
});
11+
12+
for (const key in map) {
13+
if (map.hasOwnProperty(key)) {
14+
const element = map[key];
15+
if(element !== 0) {
16+
return key;
17+
}
18+
}
19+
}
20+
}
21+
console.log(solution([9, 3, 9, 3, 9, 7, 9]));

‎ TapeEquilibrium.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
A non-empty zero-indexed array A consisting of N integers is given. Array A represents numbers on a tape.
3+
Any integer P, such that 0 < P < N, splits this tape into two non-empty parts: A[0], A[1], ..., A[P − 1] and A[P], A[P + 1], ..., A[N − 1].
4+
The difference between the two parts is the value of: |(A[0] + A[1] + ... + A[P − 1]) − (A[P] + A[P + 1] + ... + A[N − 1])|
5+
In other words, it is the absolute difference between the sum of the first part and the sum of the second part.
6+
*/
7+
8+
function solution(A) {
9+
var sumRight = A.reduce((pv, cv, idx) => (idx > 0) ? (pv + cv) : (0), 0);
10+
var sumLeft = 0;
11+
var substractions = [];
12+
var maxI = A.length - 1;
13+
14+
for(var i = 0; i < maxI; i += 1){
15+
sumLeft += A[i];
16+
substractions.push(Math.abs(sumLeft - sumRight));
17+
if (i + 1 <= maxI) sumRight -= A[i + 1];
18+
}
19+
20+
return substractions.reduce((pv, cv, idx) => (idx > 0) ? ((pv < cv)? pv : cv) : (cv), 0);
21+
}

‎AliveFishes.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
function solution(A, B) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let numFishes = A.length;
4+
if (numFishes === 0) return 0;
5+
let fishScore = [];
6+
for (let i = 0; i < A.length; i++) {
7+
if (B[i] === 1) {
8+
fishScore.push(A[i]);
9+
} else {
10+
while (fishScore.length !== 0) {
11+
if (A[i] < fishScore[fishScore.length - 1]) {
12+
numFishes--;
13+
break;
14+
} else if (A[i] > fishScore[fishScore.length - 1]) {
15+
numFishes--;
16+
fishScore.pop();
17+
}
18+
}
19+
}
20+
}
21+
return numFishes;
22+
}
23+
console.log(solution([4, 3, 2, 1, 5], [0, 1, 0, 0, 0]));
24+
console.log(solution([4, 6, 2, 1,7], [0, 1, 0, 0,1]));

‎Brackets.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
function solution(S) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let stack = [],
4+
pairs = {
5+
"{": "}",
6+
"[": "]",
7+
"(": ")",
8+
};
9+
for (let index = 0; index < S.length; index++) {
10+
const element = S[index];
11+
if (element === "{" || element === "(" || element === "[") {
12+
stack.push(element);
13+
continue;
14+
}
15+
if(stack.length === 0) return 0;
16+
17+
if (element !== pairs[stack.pop()]) {
18+
return 0;
19+
}
20+
}
21+
return stack.length === 0 ? 1: 0;
22+
}
23+
console.log(solution("{[()()]}"));

‎Crossover.js

Whitespace-only changes.

‎DistinctValues.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let map = {},
4+
uniqueCount = 0;
5+
A.forEach((element) => {
6+
if (map[element] === undefined) {
7+
map[element] = true;
8+
uniqueCount++;
9+
}
10+
});
11+
return uniqueCount;
12+
}
13+
console.log(solution([2, 1, 1, 2, 3, 1]));

‎Dominator.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let map = {},
4+
requiredLength = Math.floor(A.length / 2) + 1;
5+
for (let index = 0; index < A.length; index++) {
6+
const element = A[index];
7+
if (map[element] === undefined) {
8+
map[element] = [index];
9+
} else {
10+
map[element].push(index);
11+
}
12+
if (map[element].length >= requiredLength) {
13+
return index;
14+
}
15+
}
16+
return -1;
17+
}
18+
19+
console.log(solution([3, 4, 3, 2, 3, -1, 3, 3, 2]));

‎FrogJump.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
function solution(X, Y, D) {
3+
// write your code in JavaScript (Node.js 8.9.4)
4+
return Math.ceil((Y-X) / D);
5+
}
6+
7+
8+
9+
// A small frog wants to get to the other side of the road. The frog is currently located at position X and wants to get to a position greater than or equal to Y. The small frog always jumps a fixed distance, D.
10+
11+
// Count the minimal number of jumps that the small frog must perform to reach its target.
12+
13+
// Write a function:
14+
15+
// function solution(X, Y, D);
16+
17+
// that, given three integers X, Y and D, returns the minimal number of jumps from position X to a position equal to or greater than Y.
18+
19+
// For example, given:
20+
// X = 10
21+
// Y = 85
22+
// D = 30
23+
24+
// the function should return 3, because the frog will be positioned as follows:
25+
26+
// after the first jump, at position 10 + 30 = 40
27+
// after the second jump, at position 10 + 30 + 30 = 70
28+
// after the third jump, at position 10 + 30 + 30 + 30 = 100
29+
30+
// Write an efficient algorithm for the following assumptions:
31+
32+
// X, Y and D are integers within the range [1..1,000,000,000];
33+
// X ≤ Y.
34+

‎FrogRiverOne.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
function solution(X, A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let map = {},
4+
len = A.length;
5+
for (let second = 0; second < len; second++) {
6+
let val = A[second];
7+
if (val > X) continue;
8+
if (map[val] === undefined || second < map[val]) {
9+
map[val] = second;
10+
}
11+
}
12+
console.log(map);
13+
let maxSeconds = 0;
14+
for (let index = 1; index < X + 1; index++) {
15+
const element = map[index];
16+
if(element === undefined) {
17+
return -1;
18+
} else {
19+
maxSeconds = Math.max(maxSeconds, element);
20+
}
21+
}
22+
return maxSeconds;
23+
}
24+
console.log(solution(5, [1, 3, 1, 4, 2, 3, 5, 4]));

‎Hackerearth.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// console.log([[[[[[[22]]]]]]] == 22);
2+
// console.log(["1", "2", "3"].map(parseInt));
3+
4+
// fetch("http://starlord.hackerearth.com/kickstarter")
5+
// .then((response) => {
6+
// console.log(response);
7+
// })
8+
// .then((data) => console.log(data));
9+
10+
//Insert code below
11+
12+
// console.log("Hello World!");
13+
fetch("http://starlord.hackerearth.com/kickstarter")
14+
.then((response) => response.json())
15+
.then((data) => {
16+
let body = `<tr>
17+
<th>S. No.</th>
18+
<th>Percentage Funded</th>
19+
<th>Amount Pledged</th>
20+
</tr>`;
21+
for (let i = 0; i < data.length; i++) {
22+
let row = `<tr><td>${data[i]["s.no"]}</td><td>${data[i]["percentage.funded"]}</td><td>${data[i]["amt.pledged"]}</td></tr>`;
23+
body = body + row;
24+
}
25+
console.log(body);
26+
document.getElementById("table").innerHTML = body;
27+
});

‎Hoisting.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
function solution() {
2+
console.log(variableA); // undefined
3+
console.log(letA); // Cannot access 'letA' before initialization
4+
var variableA = 20;
5+
let letA = 30;
6+
}
7+
8+
// solution();
9+
10+
function solutionWithTimeout() {
11+
setTimeout(() => {
12+
console.log(variableA); // 20
13+
console.log(letA); // 30
14+
}, 0);
15+
var variableA = 20;
16+
let letA = 30;
17+
}
18+
19+
solutionWithTimeout();

‎Inheritance.js

Whitespace-only changes.

‎MaxCounters.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
function solution(N, A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let counters = Array(N).fill(0),
4+
max = 0;
5+
for (let index = 0; index < A.length; index++) {
6+
const element = A[index];
7+
if (element <= N) {
8+
counters[element - 1] += 1;
9+
max = Math.max(max, counters[element - 1]);
10+
} else {
11+
counters.fill(max);
12+
}
13+
}
14+
return counters;
15+
}
16+
console.log(solution(5, [3, 4, 4, 6, 1, 4, 4]));

‎MaxProductOfThree.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
// if size is less than 3, no triplet exists
4+
let n = A.length;
5+
if (n < 3) return -1;
6+
let max1 = A[0], max2 = -1, max3 = -1, min1 = A[0], min2 = -1;
7+
for(let i = 1; i < n; i++) {
8+
if(A[i] > max1) {
9+
max3 = max2;
10+
max2 = max1;
11+
max1 = A[i];
12+
} else if(max2 === -1 || A[i] > max2) {
13+
max3 = max2;
14+
max2 = A[i];
15+
} else if( max3 === -1 || A[i] > max3) {
16+
max3 = A[i];
17+
}
18+
if(A[i] < min1) {
19+
min2 = min1;
20+
min1 = A[i];
21+
} else if(min2 === -1 || A[i] < min2) {
22+
min2 = A[i];
23+
}
24+
}
25+
console.log(max1, max2, max3, min1, min2);
26+
let prod1 = max1 * max2 * max3, prod2 = max1 * min1 * min2;
27+
return Math.max(prod1, prod2);
28+
}
29+
console.log(solution([-3, -2, -16, -20, -25]));

‎MaxSliceSum.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let maxSum = A[0], currentSum = 0;
4+
for (let index = 0; index < A.length; index++) {
5+
const element = A[index];
6+
currentSum += element;
7+
maxSum = Math.max(maxSum, currentSum);
8+
if(currentSum < 0) currentSum = 0;
9+
}
10+
return maxSum;
11+
}
12+
13+
console.log(solution([3, 2, -6, 4, 0]));
14+
console.log(solution([-10]));
15+
console.log(solution([-10, -1]));
16+
17+

‎MaximumProfit.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let min = A[0],
4+
maxProfit = 0;
5+
for (let index = 1; index < A.length; index++) {
6+
const element = A[index];
7+
maxProfit = Math.max(element - min, maxProfit);
8+
min = Math.min(element, min);
9+
}
10+
return maxProfit;
11+
}
12+
console.log(solution([23171, 21011, 21123, 21366, 21013, 21367]));
13+
console.log(solution([2, 3, 10, 6, 4, 8, 1]));
14+
console.log(solution([7, 9, 5, 6, 3, 2]));

‎MergeLL.js

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
let merge_sorted = function(head1, head2) {
2+
// if both lists are empty then merged list is also empty
3+
// if one of the lists is empty then other is the merged list
4+
if (!head1) {
5+
return head2;
6+
} else if (!head2) {
7+
return head1;
8+
}
9+
10+
let mergedHead = null;
11+
if (head1.data <= head2.data) {
12+
mergedHead = head1;
13+
head1 = head1.next;
14+
} else {
15+
mergedHead = head2;
16+
head2 = head2.next;
17+
}
18+
19+
let mergedTail = mergedHead;
20+
21+
while (head1 && head2) {
22+
let temp = null;
23+
if (head1.data <= head2.data) {
24+
temp = head1;
25+
head1 = head1.next;
26+
} else {
27+
temp = head2;
28+
head2 = head2.next;
29+
}
30+
31+
mergedTail.next = temp;
32+
mergedTail = temp;
33+
}
34+
35+
if (head1) {
36+
mergedTail.next = head1;
37+
} else if (head2) {
38+
mergedTail.next = head2;
39+
}
40+
41+
return mergedHead;
42+
};
43+
44+
console.log("");
45+
console.log("");
46+
console.log("+++++++++++++++++++++++++++++++++++++++");
47+
console.log("Insertion Sort");
48+
console.log("---------------------------------------");
49+
50+
let merge_sort_node_1 = create_linked_list([1, 3, 5, 6]);
51+
let merge_sort_node_2 = create_linked_list([2, 4, 6, 20, 34]);
52+
let merged_sort = create_linked_list([1, 2, 3, 4, 5, 6, 6, 20, 34]);
53+
54+
55+
let temp_head = merge_sort_node_1;
56+
console.log("1st Linked List");
57+
while (temp_head) {
58+
console.log(temp_head.data);
59+
temp_head = temp_head.next;
60+
}
61+
62+
temp_head = merge_sort_node_2;
63+
console.log("2nd Linked List");
64+
while (temp_head) {
65+
console.log(temp_head.data);
66+
temp_head = temp_head.next;
67+
}
68+
let result = merge_sorted(merge_sort_node_1, merge_sort_node_2);
69+
70+
temp_head = result;
71+
console.log("Result Merge Sorted List");
72+
while (temp_head) {
73+
console.log(temp_head.data);
74+
temp_head = temp_head.next;
75+
}

‎MissingElement.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let n = A.length;
4+
let totalSum = ((n+1)*(n+2))/2;
5+
let sum = 0;
6+
A.forEach(element => {
7+
sum += element;
8+
});
9+
return (totalSum - sum);
10+
}
11+
console.log(solution([2,3,1,5]));
12+
13+
14+
15+
// An array A consisting of N different integers is given. The array contains integers in the range [1..(N + 1)], which means that exactly one element is missing.
16+
17+
// Your goal is to find that missing element.
18+
19+
// Write a function:
20+
21+
// class Solution { public int solution(int[] A); }
22+
23+
// that, given an array A, returns the value of the missing element.
24+
25+
// For example, given array A such that:
26+
// A[0] = 2
27+
// A[1] = 3
28+
// A[2] = 1
29+
// A[3] = 5
30+
31+
// the function should return 4, as it is the missing element.
32+
33+
// Write an efficient algorithm for the following assumptions:
34+
35+
// N is an integer within the range [0..100,000];
36+
// the elements of A are all distinct;
37+
// each element of array A is an integer within the range [1..(N + 1)].
38+

‎MissingInteger.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4);
3+
let map = {};
4+
for (let index = 0; index < A.length; index++) {
5+
const element = A[index];
6+
map[element] = true;
7+
}
8+
for (let index = 1; index < Number.POSITIVE_INFINITY; index++) {
9+
if(map[index] === undefined)
10+
return index;
11+
}
12+
}
13+
console.log(solution([1, 2, 3]));
14+
console.log(solution([1, 3, 6, 4, 1, 2]));

‎NestedString.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
function solution(S) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let stack = [];
4+
5+
for (let index = 0; index < S.length; index++) {
6+
const char = S[index];
7+
if(char === '(') {
8+
stack.push(char);
9+
} else {
10+
if(stack[stack.length-1] === '(')
11+
stack.pop();
12+
else
13+
return 0;
14+
}
15+
}
16+
if(stack.length === 0)
17+
return 1;
18+
return 0;
19+
}
20+
21+
console.log(solution("(()(())())"));
22+
console.log(solution("())"));
23+
console.log(solution(")"));
24+
console.log(solution("("));
25+

‎NoOfFactors.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// you can write to stdout for debugging purposes, e.g.
2+
// console.log('this is a debug message');
3+
4+
function solution(N) {
5+
// write your code in JavaScript (Node.js 8.9.4)
6+
let noOfFactors = 0;
7+
for (let i = 1; i <= Math.sqrt(N); i++) {
8+
if (N % i === 0) {
9+
if (N / i === i) noOfFactors++;
10+
else noOfFactors += 2;
11+
}
12+
}
13+
return noOfFactors;
14+
}
15+
16+
console.log(solution(24));

‎Passingcars.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let carsCount = 0,
4+
passingCars = 0;
5+
for (let index = A.length - 1; index >= 0; index--) {
6+
const element = A[index];
7+
if (element === 1) {
8+
carsCount++;
9+
} else {
10+
passingCars += carsCount;
11+
if(passingCars > 1000000000) {
12+
return -1;
13+
}
14+
}
15+
}
16+
return passingCars;
17+
}
18+
console.log(solution([0, 1, 0, 1, 1]));

‎Permutation.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let map = {};
4+
A.forEach(element => {
5+
map[element] = 1;
6+
});
7+
for(let i = 1; i <= A.length; i++) {
8+
if(map[i] === undefined) {
9+
return 0;
10+
}
11+
}
12+
return 1;
13+
}
14+
console.log(solution([4, 1, 3, 2]));
15+
console.log(solution([4, 1, 3]));

‎SumCurry.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
function add(x) {
2+
return function (y) {
3+
return function (z) {
4+
return x + y + z;
5+
};
6+
};
7+
}
8+
let sum = a => b => c => a+b+c;
9+
10+
// console.log(add(5)(4)(3));
11+
// console.log(sum(5)(4)(3));
12+
13+
// We can see a clear pattern, will solve it recursively
14+
function sumFn(a) {
15+
return function (b) {
16+
if (b) {
17+
return sumFn(a+b); // it takes an argument and return a function which again can take an argument.
18+
}
19+
return a; // it will keep on adding 1+2+3+4..
20+
}
21+
};
22+
console.log(sumFn(5)(4)(3)());

‎Task1.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
const ep = 0.00001;
2+
3+
function distance(x, y) {
4+
return Math.sqrt((x * x) + (y * y));
5+
}
6+
7+
function isEqualDistance(x1, y1, x2, y2) {
8+
return Math.abs(distance(x1, y1) - distance(x2, y2)) < ep;
9+
}
10+
11+
function solution(S, X, Y) {
12+
let arr = [];
13+
let map = new Map();
14+
let answer = 0;
15+
16+
for (let i = 0; i < X.length; i++) {
17+
arr[i] = i;
18+
}
19+
20+
arr.sort((a, b) => distance(X[a], Y[a]) - distance(X[b], Y[b]));
21+
22+
for (let i = 0; i < arr.length; i++) {
23+
const ch = S[arr[i]];
24+
if (map.has(ch)) {
25+
map.forEach((idx, key) => {
26+
if (isEqualDistance(X[idx], Y[idx], X[arr[i]], Y[arr[i]])) {
27+
answer--;
28+
}
29+
});
30+
break;
31+
}
32+
map.set(ch, arr[i]);
33+
answer++;
34+
}
35+
return answer;
36+
}
37+
console.log(solution("ABDCA", [2, -1, -4, -3, 3], [2, -2, 4, 1, -3]));
38+
console.log(solution("ABB", [1, -2, -2], [1, -2, 2]));

‎Task2.js

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
function solution(S, K) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let memLen = parseString(S).length;
4+
for (let i = 0; i < S.length - (K - 1); i++) {
5+
let subString = getSubstring(S, i, i + K - 1);
6+
memLen = Math.min(memLen, parseString(subString).length);
7+
}
8+
return memLen;
9+
}
10+
11+
function getSubstring( S, begin,end) {
12+
let sb = "";
13+
for (let i = 0; i < S.length; i++) {
14+
if (i < begin || i > end) {
15+
sb += S[i];
16+
}
17+
}
18+
return sb;
19+
}
20+
21+
function parseString(S) {
22+
let prevChar = S[0], newString = "", count = 1;
23+
for (let index = 1; index < S.length; index++) {
24+
const char = S[index];
25+
if(char === prevChar) {
26+
count++;
27+
} else {
28+
if(count < 2) {
29+
newString += prevChar;
30+
} else {
31+
newString = newString + count + prevChar;
32+
}
33+
count = 1;
34+
prevChar = char;
35+
}
36+
}
37+
if(count < 2) {
38+
newString += prevChar;
39+
} else {
40+
newString = newString + count + prevChar;
41+
}
42+
return newString;
43+
}
44+
45+
console.log(solution("ABBBCCDDCCC", 3));

‎Task3.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
function solution(S) {
2+
let totalACount = S.split("").filter((x) => x === "a").length;
3+
let firstgap = 0;
4+
let secondgap = 0;
5+
let count = 0;
6+
7+
if (totalACount % 3) return 0;
8+
if (totalACount === 0) {
9+
const n = S.length;
10+
return ((n - 2) * (n - 1)) / 2;
11+
}
12+
13+
const firstMatch = totalACount / 3;
14+
const secondMatch = firstMatch * 2;
15+
16+
for (let i = 0; i < S.length; i++) {
17+
if (S[i] === "a") count++;
18+
if (count === firstMatch) firstgap++;
19+
if (count === secondMatch) secondgap++;
20+
}
21+
22+
return firstgap * secondgap;
23+
}
24+
25+
console.log(solution("babaa"));
26+
console.log(solution("ababa"));
27+
console.log(solution("aba"));
28+
console.log(solution("bbbbb"));

‎Triangle.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
function solution(A) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
if (A.length < 3) return 0;
4+
5+
A.sort((a,b) => a-b);
6+
for (let i = 0; i < A.length - 2; i++) {
7+
if (A[i] + A[i + 1] > A[i + 2]) return 1;
8+
}
9+
return 0;
10+
}
11+
console.log(solution([10, 2, 5, 1, 8, 20]));
12+
console.log(solution([10, 50, 5, 1]));
13+
console.log(solution([10, 50]));

‎Westwing.js

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
class Screen {
2+
constructor(width, height) {
3+
this.height = height;
4+
this.width = width;
5+
}
6+
get diagonal() {
7+
return Math.sqrt(Math.pow(this.width, 2) + Math.pow(this.height, 2));
8+
}
9+
10+
set dimensions(definition) {
11+
var dimensions = definition.split('x')
12+
this.width = parseInt(dimensions[0]);
13+
this.height = parseInt(dimensions[1]);
14+
}
15+
}
16+
17+
let width = 500;
18+
let height = 600;
19+
let screen = new Screen(width, height);
20+
screen.width = 800;
21+
console.log(screen.diagonal); // Should print 1000.
22+
screen.dimensions = '400x300';
23+
console.log(screen.diagonal); // Should print 500.
24+
25+
26+
27+
// function PositiveNumbers() {
28+
// this.current = 0;
29+
// this.next = function() {
30+
// return ++this.current;
31+
// }
32+
// }
33+
// PositiveNumbers();
34+
// console.log(
35+
// PositiveNumbers.next());
36+
// console.log(
37+
// PositiveNumbers.next());
38+
39+
// console.log(
40+
// PositiveNumbers.next());
41+
42+
// console.log(
43+
// PositiveNumbers.next());
44+
45+
46+
// function generateNewFolderName(existingFolders) {
47+
// // Write your code here
48+
// const folderName = "New Folder";
49+
// let index = 2;
50+
// if(!existingFolders.includes(folderName)) return folderName;
51+
// while(existingFolders.includes(`${folderName} (${index})`)) {
52+
// index = index + 1;
53+
// }
54+
// return `${folderName} (${index})`;
55+
// }
56+
57+
// console.log(generateNewFolderName(["New Folder"]));
58+
59+
// class App extends React.Component {
60+
// state = {
61+
// subject: '',
62+
// body: ''
63+
// }
64+
65+
// onChange = ({name, value}) => {
66+
// this.setState({
67+
// [name]: value
68+
// })
69+
// }
70+
71+
// render() {
72+
// return <form>
73+
// <FormField onChange={this.onChange}>
74+
// <Input name="subject"/>
75+
// </FormField>
76+
// <FormField onChange={this.onChange}>
77+
// <Input name="body"/>
78+
// </FormField>
79+
// </form>
80+
// }
81+
// }
82+
// // function getP(persons) {
83+
// // return persons.map(person => {
84+
// // person.lastname = person.lastname.toUpperCase();
85+
// // return person;
86+
// // })
87+
// // }
88+
// // function getCenP(persons) {
89+
// // return persons.map(person => {
90+
// // person.address = '-----';
91+
// // return person;
92+
// // })
93+
// // }
94+
95+
// // const persons = [{
96+
// // name: 'Bert',
97+
// // lastname: 'Simpson'
98+
// // },
99+
// // {
100+
// // name: 'Harry',
101+
// // lastname: 'Potter'
102+
// // },
103+
// // {
104+
// // name: 'Sherlock',
105+
// // lastname: 'Holmes'
106+
// // }]
107+
// // const cPersons = getP(persons);
108+
// // const cenPersons = getCenP(persons);
109+
// // const harry = cPersons.find(({name}) => name === 'Harry');
110+
// // console.log(harry);
111+
// // // const cPersons =

‎array-rotate.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// you can write to stdout for debugging purposes, e.g.
2+
// console.log('this is a debug message');
3+
4+
function solution(A, K) {
5+
// write your code in JavaScript (Node.js 8.9.4)
6+
if (A.length === 0) return A;
7+
while(K > 0) {
8+
A.unshift(A.pop());
9+
K--;
10+
}
11+
return A;
12+
}
13+
console.log(solution([3, 8, 9, 7, 6], 3));

‎binary-gap.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
function solution(N) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
const bin = N.toString(2);
4+
console.log(bin);
5+
let zeroCount = 0, maxZeroCount = 0, checkZero = false;
6+
for(let i = 0; i < bin.length; i++) {
7+
zeroCount = 0
8+
while (bin.charAt(i) === "0") {
9+
++zeroCount;
10+
++i;
11+
}
12+
if(bin.charAt(i) === "1")
13+
maxZeroCount = Math.max(zeroCount, maxZeroCount)
14+
}
15+
return maxZeroCount;
16+
}
17+
console.log(solution(1041));

‎codeSnippets.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function stopAtThree(arr) {
2+
arr.forEach((num) => {
3+
if (num === 3) {
4+
return;
5+
}
6+
console.log(num);
7+
});
8+
}
9+
10+
stopAtThree([0, 1, 2, 3, 4, 5]);

‎dresslife.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function solution(x) {
2+
setTimeout(() => {
3+
return new Promise((resolve, reject) => {
4+
resolve(x * x);
5+
});
6+
}, 3000);
7+
}
8+
function bar() {
9+
return [1, 2, 3, 4].map(solution);
10+
}
11+
console.log(bar());

‎fetch.js

Whitespace-only changes.

‎minPerimeter.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
function solution(N) {
2+
// write your code in JavaScript (Node.js 8.9.4)
3+
let noOfFactors = 0,
4+
minPerimeter = Number.MAX_VALUE;
5+
for (let i = 1; i <= Math.sqrt(N); i++) {
6+
if (N % i === 0) {
7+
let perimeter = 2 * (N / i + i);
8+
minPerimeter = Math.min(perimeter, minPerimeter);
9+
}
10+
}
11+
return minPerimeter;
12+
}
13+
14+
console.log(solution(30));
15+
console.log(solution(1));
16+

0 commit comments

Comments
 (0)
Please sign in to comment.