Skip to content

Commit ef6633b

Browse files
committed
Update 220425 문자열을-정수로-바꾸기.js
1 parent 5f09b58 commit ef6633b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

level-1/문자열을-정수로-바꾸기.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ function solution(s) {
1515
//정답 3 - prove-ability
1616
function solution(s) {
1717
return parseInt(s, 10);
18+
}
19+
20+
//정답 4 - jaewon1676
21+
function solution(s) {
22+
return parseInt(s);
1823
}

0 commit comments

Comments
 (0)