Skip to content

Commit 0462f49

Browse files
Merge branch 'main' into main
2 parents ea0a466 + c5f836f commit 0462f49

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

level-1/같은-숫자는-싫어.js

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ function solution(arr) {
2424
return arr.filter((item, index) => item !== arr[index - 1]);
2525
}
2626

27-
2827
// 정답 4 - prove-ability
2928
function solution(arr) {
3029
let answer = [];

level-1/문자열-내-마음대로-정렬하기.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ function solution(strings, n) {
3434
});
3535

3636
return strings;
37-
}
37+
}

0 commit comments

Comments
 (0)