I Must Not Fear
How I Stopped Worrying and Learned to Love DSAs
Data structure and algorithm (DSA) questions are a significant part of the software engineering interview experience, and they used to be my biggest source of anxiety. I'd wake up in cold sweats, haunted by thoughts of pointers, frequency maps, trees, and graphs. I would dodge learning or attempting them because they are really good at making you feel like you know nothing. But that was then. I've faced my fair share of technical interview failures, from botching a hash map implementation to relying too heavily on built-ins instead of brute forcing a solution. Each failure taught me something valuable. I've invested in Udemy courses, a year's worth of Algoexpert, watched countless YouTube videos, and documented my notes in various places—journals, markdown files, and more. Are they a perfect way to evaluate a candidate, not really (that's a different topic) but they are not going away any time soon. Now, after many attempts at learning, I do not fear them. I will not fear them.
Levelling Up
Studying DSAs has been an on-and-off journey throughout my career. I'd start, stop, and repeat. A homie rightly pointed out that if I had committed to studying them earlier, I'd be in a better place now. As I got more experience, and saw more problems and solutions in the various codebases I have contributed to. I'm finally getting a grip on DSAs—recognizing patterns, identifying starting points, optimizing solutions, and more. It might seem trivial to some, but attempting these problems now feels significantly better.
Believe me, I am relieved that it has gotten easier or I would have doubted my entire existence in this field. I'm now dedicating an hour or two daily to purposeful studying. Most importantly I'm enjoying the process instead of dreading the learning and problem attempts. Well, except for trees (just kidding, kind of).
Easy, medium, hard questions in the summary refer to easy questions tagged on Leetcode.
Summary
Year 0 - lol what is this? I can barely push something into an array, and deal with an argument and parameter for my function. Easy questions would take HOURS.
Year 1 - okay this makes some sense, getting to grips with my language and still learning the little nuances of it. Easy questions would take like an hour or two. Medium questions equals dodge.
Year 2 - data structures are pretty important, thinking of ways to optimize my code. Avoiding long operations, nested for loops, wary of built-in methods etc. Easy questions 30min - an hour. Medium questions would be two hours.
Year 3 - Surprisingly manageable. Easy questions took the recommended time, give or take 10 minutes. Medium questions required one to two hours.
LOL - Who doesn't know how to invert a binary tree?
"How did you even get your jobs?" Not being able to invert a binary tree? Depth-first search is a walk in the park. "Git gud, scrub. GG EZ NO RE."
Fortunately, the interview questions were ones that I could handle. Trust me, I know what I'm doing sometimes. Coming from a boot camp you don't get a good grip on DSAs, well at least not the one I attended. It's crucial to remember that if you can't find a solution, communicate your problem-solving approach. I was able to explain why I implemented certain aspects and the steps in my thought process.
Regardless of where you are in your coding journey, from learning a language to picking up your third. Communicating your process is a crucial skill to have. When practicing problems, write out notes on what you would say or put them as comments in your code. It keeps you organized and helps you remember why you implemented things a certain way. I still do it every time I work on a concept or problem. Even if it's a problem I have seen before.
Learning to Love, Not Fear
I know I should've devoted more time to really learning DSA concepts and tricks earlier in my career. I've picked up different patterns and tricks along the way from the different projects I've been part of. DSAs are not some insurmountable challenge anymore; they're simply problems to solve. I don't stress when looking at them or hearing the word. I've stopped worrying about them and started to appreciate the process. When I recognize the pattern for a solution it provides the same dopamine rush I felt when executing some crappy logic to get some data displayed on the DOM during my learnings in Year 0.
"I must not fear. Fear is the mind-killer" ― Frank Herbert, Dune
I will not fear these concepts or dodge them out of insecurity. I will learn to love the journey and process. That is the key takeaway for me, and I hope it helps all learners out there no matter where they are in the journey.
Better late than never, am I right?