본문 바로가기
::public/코딩테스트 풀이

가운데 글자 가져오기

by 해맑은욱 2019. 9. 5.
*가운데 글자 가져오기(string
 
#include <iostream>
#include <string>
 
using namespace std
 
string solution(string s) { 
    string answer = ""
     
    int len = s.length(); 
    int center = (len + (len % 2)) / 2
    int pos = 2 - (len % 2); 
     
    answer = s.substr(center - 1, pos); 
     
    return answer; 
cs

'::public > 코딩테스트 풀이' 카테고리의 다른 글

문자열 내맘대로 정렬하기  (0) 2019.09.05
같은 숫자는 싫어  (0) 2019.09.05
2016년  (0) 2019.09.05
K번째 수  (0) 2019.09.05
소수의 합  (0) 2019.09.05