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 {..