반응형
https://programmers.co.kr/learn/courses/30/lessons/12903
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <iostream>
using namespace std;
string solution(string s) {
string answer = "";
size_t location = s.size() / 2;
if(0 == s.length()%2){
answer = s[location-1];
answer += s[location];
}
else {
answer = s[location];
}
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 같은 숫자는 싫어 (0) | 2022.03.16 |
---|---|
[프로그래머스][C++] [1차] 다트 게임 (0) | 2022.03.16 |
[프로그래머스][C++] [1차] 비밀지도 (0) | 2022.03.16 |
[프로그래머스][C++] 부족한 금액 계산하기 (0) | 2022.03.16 |
[프로그래머스][C++] 나머지가 1이 되는 수 찾기 (0) | 2022.03.16 |