코딩테스트/프로그래머스(C++)_Level.0
[프로그래머스] Lv.0 문자열 겹쳐쓰기
문제 코드 #include #include #include 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 = ..