Anna Sheludchenko

Junior Developer & ITMO University student

About me

I am 20 years old, and I was born in Volzhsky (Volgograd region). Nowadays, I live in Saint-Petersburg.

I am a third-year student at ITMO University. My major is information systems and technologies.

Skills

  • C&C++ programming
  • Object-Oriented programming
  • Discrete math, Calculus, Linear algebra
  • Algorithms and Data structures
  • Bash
  • Familiar with:
    • Java
    • Python

Education

  • Elementary & High School №22, Volzhsky 2008 - 2014
  • High School №30, Volzhsky 2014 - 2019
  • Musical School №3, Volzhsky 2007 - 2015
  • ITMO University, Saint-Petersburg 2019 - ...

My favourite quotes

Ту ту ту ту ту ту ту ту ту ту - Папич

Code snippet

Code snippet from object-oriented programming lab:

                
void Bank::addMember(BankAccount *bankAccount) {
    bankAccount->setVerificationLimit(this->verificationLimit);

    for (auto i : this->members)
        if (i.first->getClient() == bankAccount->getClient())
            throw std::invalid_argument("Account of this client already exists");

    this->members[bankAccount] = bankAccount->getAccountID();
}