From f7cbd2aa00f1f41d7f035c57391d3356ca5340c0 Mon Sep 17 00:00:00 2001 From: lkhyun <102892446+lkhyun@users.noreply.github.com> Date: Tue, 18 Nov 2025 23:35:52 +0900 Subject: [PATCH] =?UTF-8?q?[20251118]=20PGM=20/=20Lv2=20/=20[3=EC=B0=A8]?= =?UTF-8?q?=20=ED=8C=8C=EC=9D=BC=EB=AA=85=20=EC=A0=95=EB=A0=AC=20/=20?= =?UTF-8?q?=EC=9D=B4=EA=B0=95=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...4\353\252\205 \354\240\225\353\240\254.md" | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 "lkhyun/202511/18 PGM Lv2 [3\354\260\250] \355\214\214\354\235\274\353\252\205 \354\240\225\353\240\254.md" diff --git "a/lkhyun/202511/18 PGM Lv2 [3\354\260\250] \355\214\214\354\235\274\353\252\205 \354\240\225\353\240\254.md" "b/lkhyun/202511/18 PGM Lv2 [3\354\260\250] \355\214\214\354\235\274\353\252\205 \354\240\225\353\240\254.md" new file mode 100644 index 00000000..61b9e24a --- /dev/null +++ "b/lkhyun/202511/18 PGM Lv2 [3\354\260\250] \355\214\214\354\235\274\353\252\205 \354\240\225\353\240\254.md" @@ -0,0 +1,44 @@ +```java +import java.util.stream.*; +class Solution { + static class File implements Comparable{ + String fileName; + String HEAD; + int NUMBER; + int index; + + File(String fileName, int index){ + this.fileName = fileName; + + int i = 0; + while(i new File(files[i],i)) + .sorted() + .map(i -> i.fileName) + .toArray(String[]::new); + } +} +```