avatar

Contacts

Skills

  • HTML5, CSS3
  • JavaScript, Python
  • Git, GitHub, Bash
  • VSCode, PyCharm, WebStorm

Education

Languages

  • Belarusian, Russian - Native
  • English - Intermediate
  • Polish - Pre-Intermediate

Ivan Kirshchin

Fullstack developer

Minsk, Belarus

About me

Hi, I`m Ivan, novice developer. I really enjoy programming and constantly learning something new.

Code Examples

Your code must return true or false depending upon whether the given number is a Narcissistic number in base 10.

    def narcissistic(value):
        return value == sum([(i**len(str(value))) for i in [int(i) for i in str(value)]])
    

Projects