Javascript required
Skip to content Skip to sidebar Skip to footer

How a Web Developer Find Solutions to a Coding Problem

Was my solution to the problem an example of good problem solving? No, not at all.

The process of problem solving

Photo by Kaleidico on Unsplash

The process of problem solving is traditionally divided into four steps:

  • Understand the problem
  • Devise the plan
  • Implement the solution
  • Verify the results

Furthermore, the step of devising the plan can be further divided into two distinct phases:

  • Research for an existing solution
  • Adapt it to our specific case

The Research phase identifies preexisting solutions for problems similar to the one under examination and considers the pros and cons of each. Nowadays, this can be performed quite easily thanks to the slew of online resources available for this purpose (StackOverflow, Quora, Arxiv, etc.), somewhat shortening the time required to come up with a decent number of alternatives to solve the problem.

The Adapt phase looks at optimizing the solution found so that it better fits our own problem. Sometimes, especially in the case where the research phase yielded poor results, this phase is more creative , and we might have to come up with a novel technique to satisfy our requirements.

If we look at the story above, although the problem was simple and therefore the understanding of it was trivial, the mistake I made was not to do any research , and instead go for the first thing that came to mind. This meant creating code that worked at the unit-test level, but was destined to fail under load, which is what happened in practice.

Therefore, the first take-away for improving one's problem solving skills would be:

Take your time to understand the problem and to research available solutions

The more you practice, the quicker you can do your research, but in any case you should take as much time as needed to ensure you understand both the problem and the proposed solution, along with its strengths and weaknesses.

I am going to say it again: time is important. This is why I hate giving brain teasers during engineering interviews: you can't expect somebody to come up with, let's say, a shortest path algorithm at point blank. Not everybody is Dijkstra. At most, brain teasers can give an indication of performance and creativity under stress, but do not offer any insight into any problem solving ability.

Creativity and confidence

Photo by Alice Achterhof on Unsplash

Aside from rushing through the research phase, I found that most engineers (including myself) get stuck in the adaptation phase. There are two opposite cases here which frequently surface, especially when coming up with a completely new solution:

  • Lack of self-confidence : You actually have a valid solution, but you think it is not good enough
  • Overconfidence : You quickly find a solution, and you think it is the best invention since sliced bread

Although opposite, these behaviors both stem from the same problem: subjective bias , or in other words: you are looking at your solution from a non-objective standpoint.

Hence, the second take-away tip for improving one's problem solving skills would be:

When creating or adapting a solution, consider its merits objectively

How do we do this? The best way is to implement and verify , as we saw earlier. However, we often do not have such luxury in software engineering as the implementation of each possible solution can be costly and excessively time consuming.

What we can do instead is to create a spike and analyze its performance (a spike is the implementation of a mock-up / simplified version of the solution to explore its benefits). If this is not feasible, we can ask for opinions from other engineers to offset our own bias, bearing in mind that other engineers will have their own bias too!

Implementation and Verification

Photo by Nicole Wolf on Unsplash

Let's now take a look at the final two steps of the problem solving process.

Implementation is inevitable, unless a valid solution could not be found and the project was aborted. Any improvement in this phase falls under coding skills and is therefore out of scope for this article.

Verification , on the other hand, is often skipped as the team moves on to the next big thing straight after implementation is completed. This is a pity. The verification step can help the engineer to build their gut feel for good solutions, tying back with the "practice" point I made earlier on the topic of research.

Therefore, our third take-away for improving problem solving skills is:

Remember to learn from past experience

Verifying your solution does not need to be a formal step to be done immediately after implementation. One can verify the effectiveness of their work some time after it is released, by keeping an eye on issues raised on the topic and / or any modification requested and developed.

Code review feedback is also useful here, of course while keeping in mind the subjective bias point we saw earlier.

More things you can do

Photo by russn_fckr on Unsplash

The three tips we looked at so far are strictly related to the process of solving problems. There are many more things you can do to improve your problem solving skills, here are a few ideas:

Expand your horizons

You do not need to limit yourself to solving problems at work. Consider joining an open source project and see how you can help there. This will also allow you to learn from other engineers outside your immediate circle, and get exposure to a wider range of problems.

Challenge yourself

Although I do not like brain teasers during interviews, they are useful as a sort of gym for the mind when worked on in one's own time. You can challenge yourself through coding exercises by using sites such as Coderbyte and HackerRank.

Build something new

Start from scratch, build a new app and open source your code. You can do this alone or in a group with other engineers, and grow together. Opening the source code can invite other engineers to comment on your decisions, further improving your problem solving skills.

If you are out of ideas on apps to build, check out this list from Codementor for some inspiration.

How a Web Developer Find Solutions to a Coding Problem

Source: https://levelup.gitconnected.com/how-to-develop-your-problem-solving-skills-7b06fa230e5a