From ba00b4e45df27b2f09f039e8653a6a5d5f598efe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=ED=99=8D=EA=B5=AC?= Date: Tue, 7 May 2024 12:19:48 +0900 Subject: [PATCH] =?UTF-8?q?2024-05-07=20=EB=8B=A4=ED=95=AD=EC=8B=9D=20?= =?UTF-8?q?=EB=8D=94=ED=95=98=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- honggukang0623/README.md | 5 +++ ...5 \353\215\224\355\225\230\352\270\260.js" | 36 +++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 "honggukang0623/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260.js" diff --git a/honggukang0623/README.md b/honggukang0623/README.md index a31df9a..4134418 100644 --- a/honggukang0623/README.md +++ b/honggukang0623/README.md @@ -4,3 +4,8 @@ |:----:|:---------:|:----:|:-----:|:----:| | 1차시 | 2024.03.26 | 사칙연산 |[분수의덧셈]https://school.programmers.co.kr/learn/courses/30/lessons/120808 | [#5]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/5 | | 2차시 | 2024.03.29 | 배열 |[배열두배만들기]https://school.programmers.co.kr/learn/courses/30/lessons/120809 | [#7]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/7 | +<<<<<<< Updated upstream +======= +| 3차시 | 2024.04.05 | 배열 |[중앙값구하기]https://school.programmers.co.kr/learn/courses/30/lessons/120811# | [#13]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/13 | +| 4차시 | 2024.04.09 | 출력 |[직각삼각형출력하기]https://school.programmers.co.kr/learn/courses/30/lessons/120823 | [#17]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/17/commits| +>>>>>>> Stashed changes diff --git "a/honggukang0623/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260.js" "b/honggukang0623/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260.js" new file mode 100644 index 0000000..6c5bf6a --- /dev/null +++ "b/honggukang0623/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260/\353\213\244\355\225\255\354\213\235 \353\215\224\355\225\230\352\270\260.js" @@ -0,0 +1,36 @@ +function solution(polynomial) { + const values = polynomial.split(' + '); + console.log("values : ", values); + let x = 0; + let c = 0; + for(let i=0;i 1) { + answer += `${x}x`; + } + + if(x === 0 && c > 0) { + answer += c; + } + else if(c > 0) { + answer += ` + ${c}`; + } + return answer; +}