티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/12903
def solution(s):
answer = ''
size = int(len(s)/2)
if len(s) % 2 == 0:
answer = s[size-1:size+1]
else:
answer = s[size]
return answer
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2020.02.08 |
---|---|
[Python]프로그래머스 - 2016년(level1) (0) | 2020.02.08 |
[Python]프로그래머스 - 모의고사(level1) (0) | 2020.02.07 |
[C++][완전탐색] 프로그래머스 - 소수 찾기(Level2) (2) | 2019.12.31 |
[C++]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2019.12.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Permutation
- 문자열처리
- 2019 Kakao Blind Recruitment
- 파이썬
- BOJ
- SW Expert
- 스택
- 정렬
- 2020 KAKAO BLIND RECRUITMENT
- 우선순위큐
- combination
- C++
- 딕셔너리
- 해시
- 순열
- 프로그래머스
- dictionary
- 괄호
- 백준
- 문자열
- Python
- programmers
- 코딩테스트
- hash
- 완전탐색
- 힙
- 구현
- left join
- 재귀
- SWExpert
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함