Блог пользователя Venti_chai

Автор Venti_chai, история, 3 года назад, По-английски

I was reminiscing my first submissions on Codeforces and how much my coding style has changed since the last year. I am interested in hearing your stories about your coding style or the time when you started Codeforces!

  • Проголосовать: нравится
  • +19
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +48 Проголосовать: не нравится

My path is from clean code to ugly template...

»
3 года назад, # |
  Проголосовать: нравится +30 Проголосовать: не нравится

I abandoned my whole template and now I write fully clean code.

  • »
    »
    3 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    Have you observed any personal benefits or any improvement during problem solving after adopting a cleaner coding style?

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится +4 Проголосовать: не нравится

      yeah, It is good for interviews. And I don't see any major benefits using templates other than just some seconds of time.

»
3 года назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится

JavaScript -> python -> C++. Thats it.

»
3 года назад, # |
  Проголосовать: нравится +4 Проголосовать: не нравится

from clean code to ugly code.

from solving problem A in 1 hour 50 minutes to solve it in less than 5 minutes(my typing speed is not very fast so i dont solve it in less than 1-2 minutes)

»
3 года назад, # |
  Проголосовать: нравится +30 Проголосовать: не нравится

Been only a month here but coding style has changed from Wrong Answer on Pretest 2 to Wrong Answer on Pretest 2

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

From clean small codes to Ugly confusing code using multiple 100-200 line templates.

»
3 года назад, # |
Rev. 2   Проголосовать: нравится +7 Проголосовать: не нравится

Instead of thinking about cases on paper,I now just write ugly if-else ladders. Speedforces whoooosh.

And as I am implementing my if-else ladders I come across 2-3 observations that would have saved me a lot of code.

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I remember getting intimidated by variations of C++ submission languages.

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Submission languages?

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Yeah C++ Clang, GCC, G++ etc, I didn't know which one to pick.

      • »
        »
        »
        »
        3 года назад, # ^ |
          Проголосовать: нравится +1 Проголосовать: не нравится

        It happened to me too! I got compilation error by submitting my c++ solution in GCC. And it indeed took me a while to understand what was wrong.

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

my coding style sucks. Doesn't differ if it is from 2 years ago or from today.