Skip to content

Instantly share code, notes, and snippets.

View hkdobrev's full-sized avatar

Harry Dobrev hkdobrev

View GitHub Profile
@hkdobrev
hkdobrev / taxRates.js
Created March 23, 2025 12:38
Tax rates task for Uber coding screening interview
const taxRates = [
{
"country": "BG",
"rates": [
{
"date": "2020-01-01",
"rate": 10,
},
{
"date": "2020-06-01",
@hkdobrev
hkdobrev / currency-converter.js
Created March 23, 2025 12:39
Currency converter task for Uber coding interview
const exchangeRates = [
{
"from": "TRY",
"to": "USD",
"rate": 0.6,
},
{
"from": "EUR",
"to": "TRY",
"rate": 5.5,