Coding Interviews are getting harder to pass. To prepare for coding interviews, you will need weeks, if not months of preparation. Anyone preparing fo

Don’t Just LeetCode; Follow the Coding Patterns Instead

submited by
Style Pass
2022-09-21 19:30:05

Coding Interviews are getting harder to pass. To prepare for coding interviews, you will need weeks, if not months of preparation.

Anyone preparing for coding interviews definitely knows LeetCode. It is probably the biggest online repository for coding interview questions. Let’s take a look at what problems people face when using LeetCode.

There are more than 2k problems in LeetCode. The biggest challenge with LeetCode is its lack of organization; it has a huge set of coding problems, and one isn’t sure where to start or what to focus on.

One wonders, is there an adequate number of questions one should go through to consider themselves prepared for the coding interview?

I would love to see a streamlined process that guides me and teaches me enough algorithmic techniques to feel confident for the interview. As a lazy person myself, I wouldn’t like to go through 500+ questions.

One technique that people often follow is to solve questions related to the same data structure; for example, focusing on questions related to Arrays, then LinkedList, HashMap, Heap, Tree, or Trie, etc. Although this does provide some organization, it still lacks coherence. For example, many questions can be solved using HashMaps but still require different algorithmic techniques.

Leave a Comment