From 9f3cb0be3ec49ecad86ef38daaaa67663734bf88 Mon Sep 17 00:00:00 2001 From: Insub Kim Date: Wed, 23 Apr 2025 21:12:07 +0900 Subject: [PATCH] =?UTF-8?q?-=20=EB=B0=98=EB=B3=B5=EB=AC=B8=20=EB=B2=94?= =?UTF-8?q?=EC=9C=84=20=EC=88=98=EC=A0=95:=20y=20=EB=A3=A8=ED=94=84=205~20?= =?UTF-8?q?=20=E2=86=92=200~1000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index a877860..cf63ee1 100644 --- a/index.js +++ b/index.js @@ -164,7 +164,7 @@ async function main() { secondArray = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']; } for (let x = 0; x < secondArray.length; x++) { - for (let y = 5; y < 20; y++) { + for (let y = 0; y < 1000; y++) { const rtnval = y.toString().padStart(3, '0'); const kiscode = firstArray[i] + secondArray[x] + rtnval; const url = `${baseUrl}${kiscode}`;