Beauty-of-Programming 2015 Qualification Round Tutorial
A. 2月29日 (Feb. 29th)
Description
Given a starting date and an ending date. Count how many Feb. 29th are between the given dates.
Solution
The easiest way, of course, the brute force, which is quite simple with Python using the datetime
lib.
However, it's not an effective way for the …
more ...