Telegram: @KateVolmont
Discord: katekurakina
Graduate in Software Engineering from MIREA (2022). Аctively pursuing self-education to enhance frontend development skills.
let stack = [];
for (let i = 0; i < str.length; i++) {
let count = 0;
for (let j = 0; j < bracketsConfig.length; j++) {
if (str[i] === bracketsConfig[j][0]) {
if (str[i] !== bracketsConfig[j][1]) {
stack.push(str[i]);
count++;
} else if (str[i] === bracketsConfig[j][0]) {
if(stack[stack.length - 1] !== str[i]) {
stack.push(str[i]);
count++;
}
}
}
}
}
Cryptocurrency converter
A single-page application for converting between cryptocurrencies and fiat currencies using real-time exchange rates.
Technologies: HTML, CSS, JavaScript
MIREA – Russian Technological University
Bachelor’s Degree in Software Engineering
2018 – 2022
Intermediate