December 9, 2020
algorithms, BASH, bash script, c / c++, c #, C/C++, C# (CSharp), java, Java, javascript, Node.Js, php, PHP, programming languages, Python, python, Rust, string, VBScript, vbscript
You are given a lowercase alphabet string text. Return a new string where every character in text is mapped to its reverse in the alphabet, so that a becomes …
Teaching Kids Programming: Videos on Data Structures and Algorithms Anagrams are strings/words that contain the same set of letters and each letter should appear the same number of times. …
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 QBasic was popular in the late 80s and early 90s. It was the programming language for MSDOS. Not many of …
August 31, 2020
algorithms, Binary Tree, c / c++, C/C++, code, data structure, interviews, Java, programming languages, Python
A Binary Search Tree (BST) is a commonly used data structure that can be used to search for an item in O(LogN) time. A BST has the following characteristics: …