티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/12903
#include <string>
#include <vector>
using namespace std;
string solution(string s) {
string answer = "";
if(s.size() % 2 == 1) {
answer = s.substr(s.size() / 2, 1);
} else {
answer = s.substr(s.size() / 2 - 1, 2);
}
return answer;
}
- substr() : 문자열 자르기 함수
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 도둑질(level4) (0) | 2019.11.22 |
---|---|
[C++]프로그래머스 - 네트워크(level3) (0) | 2019.11.22 |
[C++]프로그래머스 - 탑(level2) (0) | 2019.11.21 |
[Python]프로그래머스 - K번째수(level1) (0) | 2019.11.17 |
[Python]프로그래머스 - 2*n타일링(level3) (0) | 2019.11.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 구현
- 2020 KAKAO BLIND RECRUITMENT
- C++
- dictionary
- SWExpert
- 백준
- 파이썬
- Permutation
- combination
- 괄호
- 딕셔너리
- 해시
- programmers
- 완전탐색
- 우선순위큐
- 문자열처리
- BOJ
- 힙
- 순열
- Python
- SW Expert
- 2019 Kakao Blind Recruitment
- 재귀
- 코딩테스트
- hash
- left join
- 문자열
- 정렬
- 스택
- 프로그래머스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함