← Home

Blogs

Code, Solutions & Discovery.

A public digital garden documenting my journey through bugs, features, and the chaotic beauty of web development.

Filtering: interview
TopicsSort: Newest
All#guide#dsa#algorithms#js#interview#javascript#dom#python#basic#blog#arrays#hashmap#react#hooks#github#mdx#prefixsum#subarray#brute-force#markdown#p5#git#c++#lib#array#regx#advance#stack#ts#nextjs#rss#dev.to#next-api#ssr#seo#cms#optimal#coding#nodejs#automation#blogging#productivity#JavaScript#debounce#throttle#event handling#performance optimization#search input#scroll events#requestAnimationFrame#modern JavaScript#Javascript#event-loop#task-queue#microtasks#macrotasks#async#call-stack#execution-context#web-development#beginner-guide#twopointer#string#slidingwindow#PostgreSQL#PostgreSQL Password Reset#PostgreSQL Windows#Reset Database Password#Postgres Security#Database Administration#psql Tutorial#PowerShell PostgreSQL#PostgreSQL 17
Oct 1, 2025

solve leetcode Reverse an Array

Learn how to reverse an array efficiently using brute force and optimal approaches in Python and JavaScript.

#algorithms#javascript#dsa
Oct 1, 2025

solve leetcode find minimum and maximum in an array

Learn how to efficiently find the smallest and largest elements in an array using simple and optimal techniques in Python and JavaScript.

#algorithms#javascript#dsa
Oct 1, 2025

solve leetcode Rotate an array to the right by k steps

Learn how to rotate an array efficiently using the reverse approach in Python and JavaScript with step-by-step explanation.

#algorithms#javascript#dsa
Sep 23, 2025

Two Sum – Brute Force vs Hashing

Solve the classic Two Sum problem using brute-force and optimized hashing techniques, a must-know algorithm for coding interviews.

#algorithms#arrays#hashmap
Sep 23, 2025

Longest Substring Without Repeating Characters – Sliding Window

Learn how to efficiently find the longest substring with unique characters using sliding window and hashmap in Python and JavaScript.

#algorithms#string#slidingwindow
Jun 26, 2025

Check if a Subarray with Zero Sum Exists – Prefix Sum in Action

Understand how to check for a zero-sum subarray using both brute-force and prefix sum techniques, with step-by-step code in Python and JavaScript.

#algorithms#arrays#prefixsum
Jun 26, 2025

Print All Zero-Sum Subarrays – From Brute-Force to Prefix Hashing

Explore how to find and print all subarrays that sum to zero using both brute-force and efficient prefix-sum + hashmap techniques in Python.

#algorithms#arrays#prefixsum