Created
March 23, 2025 12:39
-
-
Save hkdobrev/2c0041c155c99bebe62df9ac8489bc86 to your computer and use it in GitHub Desktop.
Currency converter task for Uber coding 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 exchangeRates = [ | |
{ | |
"from": "TRY", | |
"to": "USD", | |
"rate": 0.6, | |
}, | |
{ | |
"from": "EUR", | |
"to": "TRY", | |
"rate": 5.5, | |
}, | |
{ | |
"from": "BGN", | |
"to": "EUR", | |
"rate": 0.51, | |
}, | |
]; | |
function getExchangeRate(fromInitial, toInitial) { | |
const results = []; | |
const backtrack = function(currency, rates) { | |
// console.log(currency, rates, start); | |
if (currency === toInitial) { | |
results.push([...rates]); | |
return; | |
} | |
for (let i = 0; i < exchangeRates.length; i++) { | |
if (exchangeRates[i].from === currency) { | |
rates.push(exchangeRates[i]); | |
backtrack(exchangeRates[i].to, rates, i + 1); | |
rates.pop(); | |
} | |
} | |
}; | |
backtrack(fromInitial, []); | |
console.log(results); | |
if (results.length === 0) { | |
throw new Error('Cannot determine rate!'); | |
} | |
// multiply rates | |
return results[0].reduce((result, { rate }) => { | |
return result * rate; | |
}, 1); | |
} | |
console.log(getExchangeRate('BGN', 'TRY')); // 2.82 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment