Tag: implementation
Scripting.FileSystemObject is a powerful utility, that is often used in Scripting languages. In , the Scripting.FileSystemObject is used to verify if a folder exists. It can be also used …
In , the readers would find that it is illegal to put a return statement in the finally block. Here, we will conduct experiments to check if the finally block will work …
Timus online judge is my favorite. There are many compilers that are on windows platform, for example, Visual Studio. Does the judge accept program that embeds inline assembly ? …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/278/B The problem asks for the first sequence (sorted in alphabetic order) of character(s) that is not a substring of the given list of strings.The …
Count how many squares are there in the following figure. Easy validation by Python using Bruteforce, checking every possible pair of points (lower-left, and upper right) #!/usr/bin/env python # …