Index mapping: Difference between revisions

Content deleted Content added
Examples: There was one entry too much.
Line 37:
<source lang="c++">
inline bool Has30Days(int m) {
static const bool T[] = { 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0 };
return T[m];
}