-
프로그래머스 > Level 1 > 가운데 글자 가져오기프로그래머스(Programmers) 2018. 8. 8. 14:58반응형
https://programmers.co.kr/learn/courses/30/lessons/12903?language=cpp
1. 문제
2. 알고리즘
키워드 - 문자열
3. 코드
12345678910111213141516171819#include <string>#include <vector>using namespace std;string solution(string s) {string answer = "";const int size = s.size();int cand = size / 2;if(size % 2 == 0) {answer.push_back(s[cand-1]);answer.push_back(s[cand]);} else {answer.push_back(s[cand]);}return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
Level 1 > 두 정수 사이의 합 (0) 2018.08.08 Level 1 > 나누어 떨어지는 숫자 배열 (0) 2018.08.08 프로그래머스 사용자 제작 문제 > 소수의 합 (0) 2018.07.11 프로그래머스 Level 3 > 가장 긴 펠린드롬 (0) 2018.07.03 프로그래머스 Level 3 > 2 x n 타일링 (0) 2018.07.03