The O(n) Club2 Min Read dgtalbugonMay 31, 2025 The O(n) Club: Binary Tree Level Order Traversal II – Boss Mode Unlocked The O(n) Club: Binary Tree Level Order Traversal II – Boss Mode Unlocked ⚡ TL;DR Need to traverse a tree from leaf to root, level by level?… Discover More
The O(n) Club2 Min Read dgtalbugonMay 31, 2025 The O(n) Club: Letter Case Permutation — Brute Force Meets Java’s Fashion Police The O(n) Club: Letter Case Permutation — Brute Force Meets Java’s Fashion Police ⚡ TL;DR You get a string. For every letter, you swap its case… Discover More
The Mutex Club2 Min Read dgtalbugonMay 31, 2025 The Mutex Club: Java Runnable—Secret Weapon or Time Bomb? Key Insights # Runnable 101 Runnable is Java’s simplest concurrency interface: one method—run()—and no return value. Throw it at a Thread or… Discover More
The Mutex Club2 Min Read dgtalbugonMay 31, 2025 The Mutex Club: Mastering Java’s Callable Without Breaking Production Ever triggered a background task only to watch the logs implode? Java’s Callable<T> is your asynchronous sidekick—until it isn’t.… Discover More
The O(n) Club2 Min Read dgtalbugonMay 30, 2025 The O(n) Club: Longest Univalue Path: When Trees, Edges, and Your Patience All Snap The O(n) Club: Longest Univalue Path — When Trees, Edges, and Your Patience All Snap ⚡ TL;DR Find the longest path—counted in edges, not… Discover More
The O(n) Club2 Min Read dgtalbugonMay 30, 2025 The O(n) Club: Valid Palindrome: Why Your String Doesn’t Care About Punctuation The O(n) Club: Valid Palindrome – Why Your String Doesn’t Care About Punctuation ⚡ TL;DR Check if a string’s a palindrome, but ignore… Discover More
The Mutex Club1 Min Read dgtalbugonMay 30, 2025 The Mutex Club: Future-Proofing – Genius Move or Disaster? The Mutex Club: Future-Proofing – Genius Move or Disaster? ## TL;DR Future-proofing can be your engineering superpower or a one-way ticket to… Discover More
The Mutex Club2 Min Read dgtalbugonMay 30, 2025 The Mutex Club: Mastering Java’s newScheduledThreadPool() What newScheduledThreadPool() Actually Does When you summon Executors.newScheduledThreadPool(int corePoolSize), Java spins up a… Discover More
The O(n) Club3 Min Read dgtalbugonMay 29, 2025 The O(n) Club: Longest String Chain — The O(n) Club Edition The O(n) Club: Longest String Chain — The Interview Jenga That Breaks Spirits ⚡ TL;DR Find the biggest possible chain where each word is built… Discover More
The O(n) Club1 Min Read dgtalbugonMay 29, 2025 The O(n) Club: Score of Parentheses—Where Mildly Annoying Brackets Become Mathematical Fireworks The O(n) Club: Score of Parentheses—Where Mildly Annoying Brackets Become Mathematical Fireworks ⚡ TL;DR Don’t (re)curse yourself! You… Discover More