From 6f0f53a9de21aa0d5306ece8b3cf50357c3836be Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 3 May 2024 02:11:23 +0900 Subject: [PATCH] =?UTF-8?q?=ED=83=90=EC=83=89=20-=20=EB=82=A8/=EC=97=AC=20?= =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20-=20=EC=A0=95=EB=A0=AC=EC=88=9C=EC=84=9C?= =?UTF-8?q?=EC=97=90=20=EC=88=AB=EC=9E=90=EB=8F=84=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt index e119fc9..5350f23 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt @@ -181,7 +181,7 @@ class ExplorerQueryRepository( fun findCreatorByGender(gender: Int): List { val today = LocalDate.now() val offset = (today.dayOfMonth - 1) % 26 - val characters = ('A'..'Z').map { it.toString() } + val characters = ('A'..'Z').map { it.toString() }.plus((0..9).map { it.toString() }) val rotatedChars = characters.drop(offset) + characters.take(offset) val caseWhenClauses = rotatedChars.withIndex().joinToString(" ") { -- 2.40.1