Intro ์๋ ํ์ธ์. ์ด๋ฒ ์๊ฐ์๋ ์ฝํ๋ฆฐ์์ ์ ๋ ฅ ๋ฐ์ ๋ ์ง๋ก ๊ฒฝ๊ณผ์ผ์๋ฅผ ๊ตฌํ๋ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค. How to solve the problem ์๋ ์ฝ๋๋ฅผ ํ์ฉํ๋ฉด ์ ๋ ฅ ๋ฐ์ ๋ ์ง๋ก ํด๋น ๊ฒฝ๊ณผ ์ผ์๋ฅผ ๊ตฌํ ์ ์์ต๋๋ค. /** * You can edit, run, and share this code. * play.kotlinlang.org */ fun main() { // ์ค๋ ํ๋ณ ๋ฉ์๋ (1 ์ค๋ , 0 ํ๋ ) fun isLeap(year: Int): Int { return if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) 1 else 0 } fun dayOfYear(year: Int, month: Int, day: Int): Int {..