Category: math
Teaching Kids Programming: Videos on Data Structures and Algorithms Introduction to Hanoi Tower Problem Hanoi Tower is a famous math puzzle. There are three rods and N disks. The …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and …
Teaching Kids Programming: Videos on Data Structures and Algorithms Probability represents the likelyhood of an event that will occur. We can use Venn Graph to study the probability. Probability …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given N Coins, we want to build stairs rows by rows, and fill each stair with coin. The first row …
Teaching Kids Programming: Videos on Data Structures and Algorithms In Python, we have following three ways to creating a hash table: a = {} a = dict() a = …