Created
March 23, 2025 12:38
-
-
Save hkdobrev/9c006efc74b857aeefddc255c1b7e739 to your computer and use it in GitHub Desktop.
Tax rates task for Uber coding screening interview
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 taxRates = [ | |
{ | |
"country": "BG", | |
"rates": [ | |
{ | |
"date": "2020-01-01", | |
"rate": 10, | |
}, | |
{ | |
"date": "2020-06-01", | |
"rate": 15, | |
}, | |
{ | |
"date": "2021-01-01", | |
"rate": 20, | |
} | |
] | |
}, | |
{ | |
"country": "US", | |
"rates": [ | |
{ | |
"date": "2020-01-01", | |
"rate": 10, | |
}, | |
{ | |
"date": "2021-01-01", | |
"rate": 15, | |
} | |
], | |
} | |
]; | |
function findTaxRate(country, taxPointDateString) { | |
const taxRate = taxRates.find((rate) => { | |
return rate.country === country; | |
}); | |
const taxPointDate = Date.parse(taxPointDateString); | |
let resultRate; | |
taxRate.rates.forEach(({ date, rate }) => { | |
const dateObject = Date.parse(date); | |
if (dateObject <= taxPointDate) { | |
resultRate = rate; | |
} | |
}); | |
if (!resultRate) { | |
throw new Error('Cannot determine rate!'); | |
} | |
return resultRate; | |
} | |
console.log(findTaxRate('BG', '2020-03-01')); | |
console.log(findTaxRate('BG', '2020-06-01')); | |
console.log(findTaxRate('BG', '2020-09-01')); | |
console.log(findTaxRate('BG', '2021-01-01')); | |
console.log(findTaxRate('BG', '2021-03-01')); | |
console.log(findTaxRate('BG', '2021-06-01')); | |
console.log(findTaxRate('US', '2020-03-01')); | |
console.log(findTaxRate('US', '2020-06-01')); | |
console.log(findTaxRate('US', '2021-01-01')); | |
console.log(findTaxRate('US', '2021-03-01')); | |
console.log(findTaxRate('US', '2018-03-01')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment