Tag: python
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, …
Given a binary tree root, return the leftmost node’s value on each level of the tree. Constraints n ≤ 100,000 where n is the number of nodes in root …
Teaching Kids Programming: Videos on Data Structures and Algorithms The factorial of a number n is defined as n! = n * (n – 1) * (n – 2) …
November 29, 2020
algorithms, data structure, Hash Map / Hash Set, programming languages, python, Python, Recursion, teaching kids programming, Two Pointer, youtube video
Teaching Kids Programming: Videos on Data Structures and Algorithms This is actually a very famous known problem for beginners to into Algorithms & Data Structures. Given a list of …
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 …