Anastasiya Verbitskaya

Contacts
-
Email: v.ad003.m@gmail.com
-
GitHub: github.com/ad003n
-
Telegram: @telegram_name
-
Discord: Anastasia (@ad003n)
-
Phone: +375 33 XXX-XX-XX
Summary
Mathematics graduate with strong analytical skills transitioning to web development.
Key strengths:
- Analytical thinking
- Working with mathematical models
- Persistence and attention to detail
Technical Skills
Programming Languages
- C++
- VHDL
- Assembler (8051)
Design Systems
- Cadence Virtuoso (schematic and layout design)
Code Example
Problem from Codewars: Sum of multiples of 3 or 5 below a given number
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Finish the solution so that it returns the sum of all the multiples of 3 or 5 below the number passed in.
int solution(int number) {
if (number < 0) return 0;
int sum = 0;
for (int i = 1; i < number; i++) {
if (i % 3 == 0 || i % 5 == 0) {
sum += i;
}
}
return sum;
}
Courses
- RS School JavaScript/Frontend Course (2025) - now
Projects
Map Route Planner
Desktop application for working with maps that allows setting start and end points of a route, generating intermediate markers, and manipulating markers.
View Project on GitHubEducation
Belarusian State University
Faculty of Mechanics and Mathematics
Specialty: Mathematics (Scientific and Design Activities)
Languages
- Russian: Native
- Belarusian
- English: A2