✅ 문제
✅ 코드
class Solution {
public String solution(String str1, String str2) {
String answer = "";
for(int i=0;i<str1.length();i++) {
answer=answer+str1.charAt(i)+str2.charAt(i);
}
return answer;
}
}
'IT > 코딩연습!' 카테고리의 다른 글
[프로그래머스 Lv.0] ✏️문자 리스트를 문자열로 변환하기 (0) | 2023.06.13 |
---|---|
[프로그래머스 Lv.0]✏️ n의 배수 (0) | 2023.06.13 |
[프로그래머스 Lv.0] ✏️ 문자열 겹쳐쓰기 (0) | 2023.06.10 |
[프로그래머스 Lv.0] ✏️ 홀짝 구분하기 (0) | 2023.06.10 |
[프로그래머스 Lv.0] ✏️ 대소문자 바꿔서 출력하기 (0) | 2023.06.10 |