Skip to content

Instantly share code, notes, and snippets.

@hkdobrev
Created March 23, 2025 12:39
Show Gist options
  • Save hkdobrev/2c0041c155c99bebe62df9ac8489bc86 to your computer and use it in GitHub Desktop.
Save hkdobrev/2c0041c155c99bebe62df9ac8489bc86 to your computer and use it in GitHub Desktop.
Currency converter task for Uber coding interview
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