Created
May 31, 2017 04:29
-
-
Save khalid32/dbe345944b48a19cc93760ac707d7d1b to your computer and use it in GitHub Desktop.
Freecodecamp's Advanced Algorithm Scripting Challenge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Compare and update the inventory stored in a 2D array against a second 2D array of a fresh delivery. Update the current existing inventory item quantities (in arr1). If an item cannot be found, add the new item and quantity into the inventory array. The returned inventory array should be in alphabetical order by item. | |
*/ | |
function updateInventory(arr1, arr2) { | |
// All inventory must be accounted for or you're fired! | |
var inventory = arr1.concat(arr2).reduce(function(acc, next){ | |
if(acc[next[1]]){ | |
acc[next[1]] += next[0]; | |
}else{ | |
acc[next[1]] = next[0]; | |
} | |
return acc; | |
}, {}); | |
return Object.keys(inventory).map(function(value){ | |
return [inventory[value], value]; | |
}).sort(function(a, b){ | |
if(a[1] === b[1]){ | |
return 0; | |
}else{ | |
return a[1] < b[1] ? -1 : 1; | |
} | |
}); | |
} | |
// Example inventory lists | |
var curInv = [ | |
[21, "Bowling Ball"], | |
[2, "Dirty Sock"], | |
[1, "Hair Pin"], | |
[5, "Microphone"] | |
]; | |
var newInv = [ | |
[2, "Hair Pin"], | |
[3, "Half-Eaten Apple"], | |
[67, "Bowling Ball"], | |
[7, "Toothpaste"] | |
]; | |
updateInventory(curInv, newInv); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment