12 lines
165 B
C++
12 lines
165 B
C++
#pragma once
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
namespace leap {
|
|
|
|
inline bool is_leap_year(int year)
|
|
{
|
|
return !(year % 4) && ((year % 100) || !(year % 400));
|
|
}
|
|
|
|
}
|