From 09acdbe8320c96831ed6d268f2ee77c69fa8eef9 Mon Sep 17 00:00:00 2001 From: LiiNi-coder <97495437+LiiNi-coder@users.noreply.github.com> Date: Fri, 24 Oct 2025 23:45:24 +0900 Subject: [PATCH] =?UTF-8?q?[20251024]=20PGM=20/=20LV2=20/=20=ED=94=BC?= =?UTF-8?q?=EB=B3=B4=EB=82=98=EC=B9=98=20=EC=88=98=20/=20=EC=9D=B4?= =?UTF-8?q?=EC=9D=B8=ED=9D=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...63\264\353\202\230\354\271\230 \354\210\230.md" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "LiiNi-coder/202510/24 PGM \355\224\274\353\263\264\353\202\230\354\271\230 \354\210\230.md" diff --git "a/LiiNi-coder/202510/24 PGM \355\224\274\353\263\264\353\202\230\354\271\230 \354\210\230.md" "b/LiiNi-coder/202510/24 PGM \355\224\274\353\263\264\353\202\230\354\271\230 \354\210\230.md" new file mode 100644 index 00000000..5b84905c --- /dev/null +++ "b/LiiNi-coder/202510/24 PGM \355\224\274\353\263\264\353\202\230\354\271\230 \354\210\230.md" @@ -0,0 +1,14 @@ +```java +class Solution { + public int solution(int n) { + return pibo(n); + } + public static int pibo(int n){ + if(n == 0) + return 0; + else if(n == 1) + return 1; + return pibo(n-1) + pibo(n-2); + } +} +```