Welcome to My Technical Blog

Exploring algorithms, data structures, and software engineering insights through detailed LeetCode problem solutions

313+ Problems Solved
3 Difficulty Levels
20+ Categories

Latest Posts

[Medium] 221. Maximal Square

Given an m x n binary matrix filled with '0's and '1's, find the largest square containing only '1's and...
leetcodemediumdynamic-programming

All Posts

[Medium] 24. Swap Nodes in Pairs

This is a classic linked list problem that requires understanding how to manipulate pointers and traverse linked lists. The key insight is understanding pointer manipulation, recursion, and iterative approaches with...
leetcodealgorithmlinked-listrecursivedata-structurespointersmediumjavaswap-nodesrecursioniterativeproblem-solving

Java Collections Quick Reference for LeetCode

Java Collections Quick Reference for LeetCode
leetcodealgorithmjavadata-structuresreferencecheat-sheetprogrammingjava-collectionscontainersiteratorsalgorithmscompetitive-programming

[Medium] 33. Search in Rotated Sorted Array

There is an integer array nums sorted in ascending order (with distinct values), rotated at an unknown pivot. Given nums and target, return the index of target or -1 if...
leetcodealgorithmbinary-searchdata-structuresarraymediumjavarotated-arraysearchproblem-solving

Subscribe via RSS to stay updated