코딩테스트

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 더 크게 합치기

문제 코드 #include #include using namespace std; int solution(int a, int b) { int answer = 0; string str1 = to_string(a)+ to_string(b); string str2 = to_string(b)+ to_string(a); answer = stoi(str1) > stoi(str2) ? stoi(str1) : stoi(str2); return answer; // 다른 사람 문제 풀이 //return max(stoi(to_string(a) + to_string(b)), stoi(to_string(b) + to_string(a))); } int to string -> to_string(int) string to int ->..

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 곱하기

문제 코드 #include #include using namespace std; string solution(string my_string, int k) { string answer = ""; for (int i = 0; i < k; ++i) { answer += my_string; } // 다른 사람 풀이 // while (k--) answer.append(my_string); return answer; }

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자 리스트를 문자열로 변환하기

문제 코드 #include #include using namespace std; string solution(vector arr) { string answer = ""; for (const string c : arr) { answer += c; } return answer; }

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 섞기

문제 코드 #include #include #include using namespace std; string solution(string str1, string str2) { string answer = ""; for (int i = 0; i < str1.size(); ++i) { answer += str1[i]; answer += str2[i]; } // 다른 사람 풀이 /* for (int i = 0; i < str1.length(); i++) { answer.push_back(str1[i]); answer.push_back(str2[i]); } */ return answer; }

코딩테스트/프로그래머스(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 = ..

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 홀짝 구분하기

문제 코드 #include using namespace std; int main(void) { int n; cin >> n; cout

mane
'코딩테스트' 카테고리의 글 목록 (16 Page)