Tag: programming
July 1, 2012
algorithms, beginner, code, code library, implementation, interview questions, math, programming languages, python, technical
GCD (Greatest Common Divisor), in mathematics, is refered to the largest number that divides two or more non-zero integers without a remainder. For example, the GCD of 8 and …
June 17, 2012
batch script, beginner, code, code library, implementation, programming languages, technical, VBA, vbscript, windows
VBScript has been in use widely on every version of windows. It is said Bill Gates favor VBScript, which may be one of the reasons that it is shipped …
In Delphi, the TFileStream can be used to stream the file reading and writing. Below is a sample usage that appends a ‘A’ to a file everytime. program Test; …
Please see some notes at here: https://helloacm.com/notes-on-python-syntax/ Python is great, when I learn more, I really find it flexible and powerful. 1. Initialise one dimension array by zeros x …
I guess, quite often, you see the usage of __name__ in Python. Yes, it is a keyword (attribute) associate to a module. It can be used to tell if …