From b1a6037767144ccac6f53bbfedd95320c4a9bcbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EC=9D=B8=EC=84=B1?= Date: Sat, 4 Apr 2026 21:51:33 +0900 Subject: [PATCH 1/3] =?UTF-8?q?solve:=20=EB=B6=80=EB=B6=84=20=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=EC=97=B4=20=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...266\204\342\200\205\353\254\270\354\236\220\354\227\264.js" | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 "Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264.js" diff --git "a/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264.js" "b/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264.js" new file mode 100644 index 00000000..d163c464 --- /dev/null +++ "b/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264.js" @@ -0,0 +1,3 @@ +function solution(str1, str2) { + return str2.includes(str1) ? 1 : 0; +} From 690f00a3d4066c7cb0a7db8710877c0c1f5846ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EC=9D=B8=EC=84=B1?= Date: Sat, 4 Apr 2026 21:51:44 +0900 Subject: [PATCH 2/3] =?UTF-8?q?solve:=20=EB=B6=80=EB=B6=84=20=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=EC=97=B4=EC=9D=B8=EC=A7=80=20=ED=99=95=EC=9D=B8?= =?UTF-8?q?=ED=95=98=EA=B8=B0=20=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...200\205\355\231\225\354\235\270\355\225\230\352\270\260.js" | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 "Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260.js" diff --git "a/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260.js" "b/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260.js" new file mode 100644 index 00000000..2720bdaa --- /dev/null +++ "b/Insung-Jo/level_0/\353\266\200\353\266\204\342\200\205\353\254\270\354\236\220\354\227\264\354\235\270\354\247\200\342\200\205\355\231\225\354\235\270\355\225\230\352\270\260.js" @@ -0,0 +1,3 @@ +function solution(my_string, target) { + return my_string.includes(target) ? 1 : 0; +} From f07898c02a925afb1c0dc3ef403db7ab1a6268eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EC=9D=B8=EC=84=B1?= Date: Sat, 4 Apr 2026 21:51:51 +0900 Subject: [PATCH 3/3] =?UTF-8?q?solve:=20=EB=82=B4=EC=A0=81=20=EC=99=84?= =?UTF-8?q?=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "Insung-Jo/level_1/\353\202\264\354\240\201.js" | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 "Insung-Jo/level_1/\353\202\264\354\240\201.js" diff --git "a/Insung-Jo/level_1/\353\202\264\354\240\201.js" "b/Insung-Jo/level_1/\353\202\264\354\240\201.js" new file mode 100644 index 00000000..9c0587d6 --- /dev/null +++ "b/Insung-Jo/level_1/\353\202\264\354\240\201.js" @@ -0,0 +1,9 @@ +function solution(a, b) { + let sum = 0; + + for (let i = 0; i < a.length; i++) { + sum += a[i] * b[i]; + } + + return sum; +}