# 윤년 체커
is_leap_year <- function(year)
{
if(year %% 4 == 0 & year %% 100 != 0 | year && 400 == 0) {
return(TRUE)
} else {
return(FALSE)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.