Created
February 3, 2020 03:40
-
-
Save angle943/efd0307804d12397635db8025cf2751a to your computer and use it in GitHub Desktop.
Javascript Freecodecamp Algorithm #26: Cash Register
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
const denominations = ['ONE HUNDRED', 'TWENTY', 'TEN', 'FIVE', 'ONE', 'QUARTER', 'DIME', 'NICKEL', 'PENNY']; | |
const moneyDict = { | |
'PENNY': 1, | |
'NICKEL': 5, | |
'DIME': 10, | |
'QUARTER': 25, | |
'ONE': 100, | |
'FIVE': 500, | |
'TEN': 1000, | |
'TWENTY': 2000, | |
'ONE HUNDRED': 10000 | |
}; | |
const takeOutMoneyFromCid = (amtLeftToPay, cidObj, changeToGive, moneyType) => { | |
if (amtLeftToPay >= moneyDict[moneyType] && cidObj[moneyType]) { | |
if (amtLeftToPay >= cidObj[moneyType]) { | |
const amtToSubtract = cidObj[moneyType]; | |
amtLeftToPay -= amtToSubtract; | |
changeToGive.push([moneyType, amtToSubtract / 100]); | |
cidObj[moneyType] = 0; | |
} else { | |
const amtToSubtract = | |
Math.floor(amtLeftToPay / moneyDict[moneyType]) * moneyDict[moneyType]; | |
amtLeftToPay -= amtToSubtract; | |
changeToGive.push([moneyType, amtToSubtract/ 100]); | |
cidObj[moneyType] -= amtToSubtract; | |
} | |
} | |
return [amtLeftToPay, cidObj, changeToGive]; | |
}; | |
function checkCashRegister(price, cash, cid) { | |
let amtLeftToPay = Math.round((cash - price) * 100); | |
let cidObj = cid.reduce((acc, [moneyType, amt]) => { | |
return { | |
...acc, | |
[moneyType]: Math.round(amt * 100) | |
} | |
}, {}); | |
let changeToGive = []; | |
denominations.forEach(moneyType => { | |
[amtLeftToPay, cidObj, changeToGive] = | |
takeOutMoneyFromCid(amtLeftToPay, cidObj, changeToGive, moneyType); | |
}); | |
if (amtLeftToPay > 0) { | |
return {status: 'INSUFFICIENT_FUNDS', change: []}; | |
} | |
const amtLeftInCid = Object.values(cidObj).reduce((acc, amt) => acc + amt, 0); | |
if (amtLeftInCid > 0) { | |
return {status: 'OPEN', change: changeToGive}; | |
} | |
return {status: "CLOSED", change: cid}; | |
} | |
// Example cash-in-drawer array: | |
// [["PENNY", 1.01], | |
// ["NICKEL", 2.05], | |
// ["DIME", 3.1], | |
// ["QUARTER", 4.25], | |
// ["ONE", 90], | |
// ["FIVE", 55], | |
// ["TEN", 20], | |
// ["TWENTY", 60], | |
// ["ONE HUNDRED", 100]] | |
console.log(checkCashRegister(3.26, 100, [["PENNY", 1.01], ["NICKEL", 2.05], ["DIME", 3.1], ["QUARTER", 4.25], ["ONE", 90], ["FIVE", 55], ["TEN", 20], ["TWENTY", 60], ["ONE HUNDRED", 100]])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment