Tag: programming
Teaching Kids Programming: Videos on Data Structures and Algorithms Yesterday, we talked about the Breadth First Search Algorithm. We are solving the same Jump Game problem today by using …
Teaching Kids Programming: Videos on Data Structures and Algorithms Compute the Average The average of some numbers can be comptued as the sum of them divided by the number …
Teaching Kids Programming: Videos on Data Structures and Algorithms Greate Common Divisor Algorithm GCD aka Greatest Common Disvisor is the largest common divisor of two positive integers. For example, …
Teaching Kids Programming: Videos on Data Structures and Algorithms What is a Palindrome string? A Palindrome is a string that spelt backwards is also the same, like “racecar”. Palindrome …
Teaching Kids Programming: Videos on Data Structures and Algorithms Mathematically, the Fibonacci Numbers are: Fibonacci Number – Recursion def f(n): if n == 0: return 0 if n == …