728x90
반응형
문제
코드
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// 내 풀이
string solution(string my_string, string overwrite_string, int s) {
int index = 0;
for (int i = s; i < overwrite_string.size() + s; ++i)
{
my_string[i] = overwrite_string[index++];
}
string answer = my_string;
return answer;
}
/* 다른 사람 풀이
string solution(string my_string, string overwrite_string, int s) {
string answer = "";
answer = my_string.replace(s, overwrite_string.size(), overwrite_string);
return answer;
}
*/
int main()
{
std::cout << "Hello World!\n";
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스] Lv.0 문자 리스트를 문자열로 변환하기 (0) | 2023.10.12 |
---|---|
[프로그래머스] Lv.0 문자열 섞기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 홀짝 구분하기 (0) | 2023.10.11 |
[프로그래머스] Lv.0 문자열 돌리기 (0) | 2023.10.11 |
[프로그래머스] Lv.0 문자열 붙여서 출력하기 (0) | 2023.10.11 |