4
Mb3leb
5y

How do you personally practice to improve your programming logic ?

Comments
  • 2
    break ur fuckin mental sANiTY
  • 4
    Break down built-in function to traditional way
  • 2
    Maybe try going to a site like codewars.com and attempt solving hard problems and later compare your solutions with other people
  • 2
    Trial and error...and obsession
  • 2
    For me, I’m trying to figure out what do ladies think whenever they are happy or sad. If I can figure it out then I think it can improve my logic.
  • 1
    My job teaches me everyday... Nothing will be more complex and complicated at least in my dev-life.
  • 2
    I like to reinvent the wheel every time I can. If there exists a built-in function pow(x, y) for example I prefer to build my own myPow(x, y) and figure out the best implementation possible. Even though most of time is not going into production it still is a good exercise. Do that for algorithms, data structures and everything and you'll gain a lot of XP in logic.
  • 0
    @michezio that is a very nice idea ty
  • 0
    When building I always ask myself if there is a better way and I ask my colleagues how they would solve it.
Add Comment