Technical Blog

Recent posts

First Missing Positive in Java

3 minute read

DSA Java

This is one of the most famous index-placement problems. The hard part is not the swap itself, but recognizing that the answer must lie in the range 1..n+1 f...

Remove Linked List Elements in Java

2 minute read

DSA Java

This is a basic but important linked-list deletion pattern. The key lesson is that deleting by value is really about rewiring pointers safely, especially whe...