AmitDiwan has Published 10740 Articles

Find first duplicate item in array in linear time JavaScript

AmitDiwan

AmitDiwan

Updated on 25-Nov-2020 04:51:22

325 Views

We are required to write a JavaScript function that takes in a read only array of n + 1 integers between 1 and n.The function should find one number that repeats in linear time and using at most O(n) space.For example If the input array is −const arr = [3 ... Read More

JavaScript - summing numbers from strings nested in array

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 11:06:51

202 Views

Suppose, we have an array that contains some demo credit card numbers like this −const arr = ['4916-2600-1804-0530', '4779-252888-3972', '4252-278893-7978', '4556-4242-9283-2260'];We have been tasked with creating a function that takes in this array. The function must return the credit card number with the greatest sum of digits.If two credit card ... Read More

Convert array of object to array of array in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 11:06:01

1K+ Views

Suppose, we have the following array of objects −const arr = [    {"2015":11259750.05},    {"2016":14129456.9} ];We are required to write a JavaScript function that takes in one such array. The function should prepare an array of arrays based on the input array.Therefore, the output for the above array should ... Read More

Enter a number and write a function that adds the digits together on button click in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 11:04:53

641 Views

We are required to write a JavaScript program that provides users an input to fill in a number.And upon filling when the user clicks the button, we should display the sum of all the digits of the number.ExampleThe code for this will be −JavaScript Code −function myFunc() {    var ... Read More

Alphanumeric sorting using JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:58:22

413 Views

We have a mixed array that we need to sort by alphabet and then by digit −const arr = ['Ab-1', 'Ab-11', 'Ab-12', 'ab-10', 'ab-100', 'ab-101', 'ab2', 'ab-3', 'ab-105'];ExampleThe code for this will be −const arr = ['Ab-1', 'Ab-11', 'Ab-12', 'ab-10', 'ab-100', 'ab-101', 'ab2', 'ab-3', 'ab-105']; const alphaNumericSort = (arr = ... Read More

Turning a 2D array into a sparse array of arrays in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:57:14

240 Views

Suppose, we have a 2-D array like this −const arr = [    [3, 1],    [2, 12],    [3, 3] ];We are required to write a JavaScript function that takes in one such array.The function should then create a new 2-D array that contains all elements initialized to undefined ... Read More

Sort by index of an array in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:55:30

3K+ Views

Suppose we have the following array of objects −const arr = [    {       'name' : 'd',       'index' : 3    },    {       'name' : 'c',       'index' : 2    },    {       'name' ... Read More

Sorting an array by price in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:52:50

2K+ Views

Suppose we have an array of objects that contains data about some houses and price like this −const arr = [    {       "h_id": "3",       "city": "Dallas",       "state": "TX",       "zip": "75201",       "price": "162500"    }, ... Read More

Returning the highest value from an array in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:48:01

290 Views

We are required to write a JavaScript function that takes in an array of Numbers. Our function should iterate through the array and pick the greatest (largest) element from the array and return that element.ExampleThe code for this will be −const arr = [5, 3, 20, 15, 7]; const findGreatest ... Read More

Get the smallest array from an array of arrays in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Nov-2020 10:46:46

526 Views

Suppose, we have a nested array of arrays like this −const arr = [    ["LEFT", "RIGHT", "RIGHT", "BOTTOM", "TOP"],    ["RIGHT", "LEFT", "TOP"],    ["TOP", "LEFT"] ];We are required to write a JavaScript function that takes in one such array. The function then should pick the smallest subarray (smallest ... Read More

Advertisements