Few years ago leetcode was all the range with an entire cottage industry around it for acing tech interviews. I feel like now with the advent of AI it has completely gone away. I haven't done a technical interview in a long while but not even sure if it's still the dominant screening tool.
I wonder the same sometimes, but I still do it to brush up my problem-solving skills and fundamental understanding of systems and data structures. AI can make mistakes. I was implementing LRU Cache using a linked list, and AI coding did it well, but it wasn’t fitting for my system. I had a better understanding of the context, so maybe I failed to provide enough problem context to AI.
The meta is definitely shifting. Since AI can now instantly output a flawless solution to almost any medium/hard LeetCode problem, asking someone to write it from memory on a whiteboard feels entirely disconnected from 2026 reality. What I'm seeing more of now is a heavy shift towards System Design, architecture, and "Code Review" interviews where you are given AI-generated code and asked to find the hidden bugs or security flaws.
Mmm, I stopped doing leetcode back in 2024 because I realized that even though I was able to build highly efficient small portions of code, I wasn't actually able to build real software because I wasn't able to put all these small pieces together, so far I think it was a good decision because now I'm able to build real software. As for the current state in interviews I have no idea, but personally I think is not as importart or useful for most situations when developing software.
think of any type of software project, it's just a lot of functions calling to each other, getting that to scale without becoming a mess was really hard to me, so what I did was that I started to try different architectural patterns to see what worked for me, my current coding style is a mix of 1) functional programming, 2) hexagonal architecture, and 3) test driven development; and I found that object oriented programming is not good at all it causes plenty of problems as the codebase grows, I mention OOP because is one of the most mentioned ones but I think is not that good.
I develop in TypeScript, so I use the library Effect plenty of it follows functional programming principles, it also has dependency inyection with the objects Context and Layer which can be used for hexagonal architecture and for test driven development I use vitest
With AI, companies care more about how you think and solve real problems, not just memorizing questions.
I develop in TypeScript, so I use the library Effect plenty of it follows functional programming principles, it also has dependency inyection with the objects Context and Layer which can be used for hexagonal architecture and for test driven development I use vitest
Same issues though - normally comes down to knowing a trick rather for leetcode than actual coding