Author: ACMer
I am starting a series of code refactoring examples as I see them a lot from time to time. Today, I read the following piece of code in our …
A Sparse Matrix (SM) is a popular data structure that is used to stored two-dimension Matrix when the total the empty/zero elements are the majority in the matrix. For …
This post shows you how to download the Videos from Tumblr website. There are many interesting videos on Tumblr. And if you want to download them (save the Tumblr …
Unlike Dynamic Link Library (DLL), the static library are pre-compiled and linked to the binary executables. Once built into the final executables, the static library cannot be shared among …
Given an array (non empty) of integers, find the number of minimum moves to make all elements equal. A move is to increment (n – 1) elements by one. …