반응형
포인트
1. string 을 받는 크기에 따라서 값이 달라진다.
🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다.
#include <string>
#include <vector>
using namespace std;
string solution(string s) {
string answer = "";
int a = s.size();
if (a & 1) {
answer += s[a / 2];
} else {
int index = a / 2;
answer += s[index - 1];
answer += s[index];
}
return answer;
}
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘] c++ cpp 나누어 떨어지는 숫자 배열 (0) | 2020.10.21 |
---|---|
[알고리즘] c++ cpp 같은 숫자는 싫어 (0) | 2020.10.21 |
[알고리즘] c++ cpp 3진법 뒤집기 (0) | 2020.10.21 |
[알고리즘] c++ cpp 2016년 (0) | 2020.10.21 |
[알고리즘] K번째 수 (0) | 2020.10.21 |
댓글