diff --git a/honggukang0623/README.md b/honggukang0623/README.md index e12b00b..c2f14cb 100644 --- a/honggukang0623/README.md +++ b/honggukang0623/README.md @@ -4,4 +4,5 @@ |:----:|:---------:|:----:|:-----:|:----:| | 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 | -| 3차시 | 2024.04.05 | 배열 |[중앙값구하기]https://school.programmers.co.kr/learn/courses/30/lessons/120811# | [#13]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/13 | \ No newline at end of file +| 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| \ No newline at end of file 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; +}