Monday, April 13, 2020

PyBites: Stop obsessing about algorithms

(Photo by Patrick Perkins on Unsplash)

We hear it so often: I need to ace algorithms to land a SW job.

To a certain extent yes. You surely need to understand what data structure to use and make efficiency trade-offs.

There will always be some of this in an interview, especially in highly technical positions where performance matters.

But this does NOT make you a proficient programmer in 80+% of the roles you could be applying for.

When it comes to excelling as a developer it’s much more important to become PRAGMATIC:

  • Quickly grasp large code bases

  • Collaborate with other developers (code is written for and by humans)

  • Convert requirements into code and quickly adjust to stakeholder’s feedback

  • Write maintainable / extensible code

  • Write testable code (and tests)

  • Break large projects into concrete subtasks

  • Be a fast learner of any new technologies (we use Docker now? You wouldn’t flinch)

Notice how algorithms are not on that list.

It surely matters for multiple of those points, but they are a tool, not the goal.

Hence they should not be your 80/20 in order to get a job as a software developer.

Don’t believe me? Just look at one of my favorite software recruiting books by Joel Spolsky, which he succinctly titled Smart and Gets Things Done.

Stop obsessing about algorithms and start focussing on getting (the right) things done.

-- Bob

With so many avenues to pursue in Python it can be tough to know what to do. If you're looking for some direction or want to take your Python code and career to the next level, schedule a call with us now. We can help you!



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...