Skip to content

Commit

Permalink
Merge pull request #7 from AlgoLeadMe/2-honggukang0623
Browse files Browse the repository at this point in the history
2-honggukang0623
  • Loading branch information
Ghdrn1399 authored Apr 3, 2024
2 parents ec065b7 + 686be26 commit 278c474
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions honggukang0623/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

| 차시 | 날짜 | 문제유형 | 링크 | 풀이 |
|:----:|:---------:|:----:|:-----:|:----:|
| 1차시 | 2023.10.27 | BFS | - | - |
---
| 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 |
11 changes: 11 additions & 0 deletions honggukang0623/배열/배열 두배 만들기.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function solution(numbers) {
var answer = [];


let cnt = 0;
while(cnt < numbers.length){
answer.push(numbers[cnt]*2);
cnt = cnt +1;
}
return answer;
}

0 comments on commit 278c474

Please sign in to comment.