
Ekaterina Vostrikova
Web-developer
Contacts
- Location: Torrevieja, Spain
- Email: ekavos@hotmail.com
- Phone: +34 *** *** ***
- GitHub:ekavost
- Discort: ekavost(@ekavost)
Skills
- HTML, CSS, Bootstrap, Vuetify
- JavaScript, Vue.js
- PHP, Laravel (basics)
- C#, ASP.NET (basics)
- SQL
- Git, GitHub, VS, VS Code
Education
- (2017 - 2021) Novosibirsk State University, linguistics (Novosibirsk, Russia)
- (2023 - 2025) IES Mare Nostrum, web-developer (Alicante, Spain)
Languages
- English: B2-C1
- Spanish: B2-C1
- Russian: native
About me
Aspiring web developer with a passion for quality and thoughtful solutions, I am committed to continuous learning and growth. My strengths include teamwork, analytical thinking, and a strong work ethic. Recently completed Higher Technical Degree in Web Application Development, including practical frontend-focused experience. Eager to apply my skills in coding and design.
Code example (C#)
Task:
The first input array is the key to the correct answers to an exam, like ["a", "a", "b", "d"]. The second one contains a student's submitted answers.The two arrays are not empty and are the same length. Return the score for this array of answers, giving +4 for each correct answer, -1 for each incorrect answer, and +0 for each blank answer, represented as an empty string.
using System;
public static class Kata
{
public static int CheckExam(string[] arr1, string[] arr2)
{
int result = 0;
for (int i = 0; i < arr1.Length; i++)
{
if (arr1[i] == arr2[i])
result += 4;
else if (arr2[i] != "")
result -= 1;
}
if (result < 0)
result = 0;
return result;
}
}