Sha256: 1357f6f640253ba2e6091f0a34d7d2647b5c28f71514fd8f282893167778f1d8
Contents?: true
Size: 238 Bytes
Versions: 396
Compression:
Stored size: 238 Bytes
Contents
#include <stdbool.h> bool is_leap_year(int year) { if (year % 4 == 0) { if (year % 400 == 0) { return true; } if (year % 100 == 0) { return false; } return true; } return false; }
Version data entries
396 entries across 396 versions & 1 rubygems