Anastasiya Verbitskaya

Anastasiya Verbitskaya

Contacts

  • Email Email: v.ad003.m@gmail.com
  • GitHub GitHub: github.com/ad003n
  • Telegram Telegram: @telegram_name
  • Discord Discord: Anastasia (@ad003n)
  • Phone 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 GitHub

Education

Belarusian State University

Faculty of Mechanics and Mathematics

Specialty: Mathematics (Scientific and Design Activities)

Languages

  • Russian: Native
  • Belarusian
  • English: A2