Category: programming languages
April 24, 2021
AWK, awk, AWK programming, BASH, bash script, BASH Shell, batch script, linux, Shell Scripts, ubuntu
Disk high usage are one of the common cause of server down. Some administrators would create a 8GB empty file, and once the disk usage is exceeding a threshold, …
Teaching Kids Programming: Videos on Data Structures and Algorithms There is an undirected star graph consisting of n nodes labeled from 1 to n. A star graph is a …
Teaching Kids Programming: Videos on Data Structures and Algorithms Multiply Two Numbers without usig any Multiply, Divide, and Bit Shifting Operators. def mul(a, b): return a * b Algorithm …
February 20, 2021
algorithms, Combination, Combinatoric Mathematics, math, Permutation, programming languages, python, recursive, teaching kids programming, youtube video
Teaching Kids Programming: Videos on Data Structures and Algorithms Permutation and Combination are the math concepts to count. Given N items, if we want to choose M items (M …
Given a list of positive integers nums and an integer k, return the number of subsets in the list that sum up to k. Mod the result by 10 …