Tag: programming language
July 10, 2012
beginner, code, code library, HTA, implementation, programming languages, tools / utilities, VBA, vbscript, windows
My girlfriend was asking me several times before that she needs a handy tool to know how many days are before her due-date and in the future she needs …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/26/A The input range is small which means even the worst brute-force methods can pass the test. The straightforward implementation is . Defining a …
One of the most selected algorithms in the last century is binary search. It is a general search method which is simple and efficient. It can be used to …
In , an unusual, fun sorting algorithm, called ‘Bogo’, is demonstrated using Python. This article, which introduces another famous sorting algorithm, which may be just for fun only. The …
A prime number is a positive natural number that is greater than 1 and no other divisors other than 1 and itself. For example, 2, 3, 5 are primes …