Leetcode 120. How To Find The Minimum Path From Top To Bottom Of A TriangleJan 23, 2024·4 min read·254
Leetcode 59. How To Go Around A Square Matrix In Spiral OrderA simple example of using C++ switchJan 31, 2024·2 min read·529
How to Check If a Number is a Power of FourThe math behind Leetcode 342. Power of Four.Dec 26, 2023·2 min read·213
How to Encode Morse CodeA C++ solution to Leetcode 804. Unique Morse Code Words using mapping and std::unordered_set to keep track of unique representations.Dec 19, 2023·3 min read·126
How To Add Two Numbers Represented As Linked ListsBy iterating digit by digit, and calculating the sum and carry, it handles scenarios for the lengths of the input lists and any remaining carry valuesDec 12, 2023·3 min read·136
How to Solve Coding Challenges: A Comprehensive GuideA step-by-step approach to effectively solve coding challenges, prepare for coding interviews, and land dev jobs.Dec 5, 2023·7 min read·357
How To Count Unique Paths In A Grid With ObstaclesAn example of dynamic programmingNov 30, 2023·4 min read·254
How to Perform a Counting Using Array and Hash TableFinding the first non-repeating character in a stringNov 28, 2023·3 min read·245