HashMap, Arrays · Overview I walk you through how to solve Leetcode problem 347. Top K Frequent Elements. Approach 1: Count HashMap def...
Arrays / Hashing · Overview I walk you through how to solve Leetcode problem 49. Group Anagrams. There are a couple of approaches to solving this...
An Analysis of BSTs · Background Linked List vs. Array - search() Linked lists have a slight downside when it comes to finding an item. If the item we're...
Hashing · This is a CodeWars problem that requires returning a HashMap of the count of characters within a string. Approach 1: HashMap def count(s): ...
Arrays / Hashing · I walk you through how to solve Leetcode problem 1. Two Sum. I highlight a couple of approaches to solving it. As usual, there are...
Recursion · Approach 1: Recursion + Helper Function /* Recursive helper function that returns the product result of multiplying the digits of a number...