Found 8591 Articles for Front End Technology

Calculating average of a sliding window in JavaScript

AmitDiwan
Updated on 26-Feb-2021 08:59:29

623 Views

We are required to write a JavaScript function that takes in an array of integers, arr, as the first argument and a number, num (num < length of arr) as the second argument. The function should construct and return a new array that contains the average of all possible num contiguous numbers of the array.For example −If the input array and the number are −const arr = [1, 2, 3, 4, 5]; const num = 2;Then the output should be −const output = [1.5, 2.5, 3.5, 4.5];because the possible continuous windows of size two are (1, 2), (2, 3), (3, ... Read More

Finding average of n top marks of each student in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:00:58

585 Views

Suppose, we have an array of objects that contains information about some students and the marks scored by them over a period of time like this −const marks = [    { id: 231, score: 34 },    { id: 233, score: 37 },    { id: 231, score: 31 },    { id: 233, score: 39 },    { id: 231, score: 44 },    { id: 233, score: 41 },    { id: 231, score: 38 },    { id: 231, score: 31 },    { id: 233, score: 29 },    { id: 231, score: 34 }, ... Read More

Finding even length numbers from an array in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:02:29

486 Views

We are required to write a JavaScript function that takes in an array of Integers as the first and the only argument. The function should then construct and return a new array that contains only those elements from the original array that contains an even number of digits.For example −If the input array is −const arr = [12, 6, 123, 3457, 234, 2];Then the output should be −const output = [12, 3457];ExampleThe code for this will be − Live Democonst arr = [12, 6, 123, 3457, 234, 2]; const findEvenDigitsNumber = (arr = []) => {    const res = []; ... Read More

Finding minimum steps to make array elements equal in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:04:22

304 Views

We are required to write a JavaScript function that takes in a number, num as the only argument. The function should first construct an array of n elements based on the following rule −arr[i] = (2 * i) + 1;Therefore, if the input number is 5, then the array should be −const arr = [1, 3, 5, 7, 9];Our function is supposed to calculate and return the minimum number of steps it should take so that all the elements of the array become equal.Let us now define one step −One valid step consists of choosing any two numbers from the ... Read More

Finding maximum number of consecutive 1's in a binary array in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:06:08

333 Views

We are required to write a JavaScript function that takes in a binary array (an array that consists of 0 or 1 only) as the only argument.The function should find the length of that consecutive subarray of the array that consists of only 1 and return it.For example −If the input array is −const arr = [1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1];Then the output should be −const output = 4;We will use the sliding window algorithm to capture the largest window (largest in size) that consists of only 1.ExampleThe code for this ... Read More

Validating a square in a 2-D plane in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:07:59

162 Views

We are required to write a JavaScript function that takes in four arguments. The four arguments will all be arrays of exactly two numbers representing the coordinates of four vertices of a quadrilateral or any figure (closed or unclosed) on a plane.The task of our function is to determine whether or not the four vertices form a square.If they do form a square, we should return true, false otherwise.For example −If the input coordinates are −const c1 = [1, 0]; const c2 = [-1, 0]; const c3 = [0, 1]; const c4 = [0, -1];Then the output should be −const ... Read More

Intersection of three sorted arrays in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:55:03

441 Views

We are required to write a JavaScript function that takes in three arrays of integers all sorted in an increasing order. The function should then construct and return an array that contains only those elements that present in all three arrays.For example −If the input arrays are −const arr1 = [4, 7, 8, 11, 13, 15, 17]; const arr2 = [1, 3, 4, 13, 18]; const arr3 = [2, 4, 7, 8, 9, 10, 13];Then the output should be −const output = [4, 13];ExampleThe code for this will be − Live Democonst arr1 = [4, 7, 8, 11, 13, 15, 17]; ... Read More

Map anagrams to one another in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:57:21

202 Views

Anagram arrays:One array is an anagram of another if we can randomise the elements of that array to achieve the other array.For example −[1, 2, 3] and [2, 1, 3] are anagrams of each other.Suppose, we have two arrays, arr1 and arr2 which are anagrams of each other.We are required to write a JavaScript function that takes in these two arrays and returns a new mapping array of the same length as arr1 and arr2. The mapping array should contain the index of elements of the arr1 array as they are present in the arr2 array.For example −If the two ... Read More

Calculating time taken to type words in JavaScript

AmitDiwan
Updated on 26-Feb-2021 09:59:42

288 Views

Suppose we have a keyword, which instead of the traditional qwerty type key mapping, maps keys simply according to the english alphabetic order i.e., abcde...Before we dive into the problem, we have to make the following two assumptions −Currently our fingertip is placed at index 0, i.e., the key 'aThe time taken to move from one key to some other is the absolute difference of their index, for example the time taken to move from 'a' to 'k' will be |0 - 10| = 10We are required to write a JavaScript function that takes in a string of english lowercase ... Read More

Squaring every digit of a number using split() in JavaScript

AmitDiwan
Updated on 26-Feb-2021 10:01:17

216 Views

We are required to write a JavaScript function that takes in a number as the first and the only argument. The function should then square every digit of the number, append them and yield the new number.For example −If the input number is −const num = 12349;Then the output should be −const output = 1491681;because '1' + '4' + '9' + '16' + '81' = 1491681ExampleThe code for this will be − Live Democonst num = 12349; const squareEvery = (num = 1) => {    let res = ''    const numStr = String(num);    const numArr = numStr.split('');   ... Read More

Advertisements