https://school.programmers.co.kr/learn/courses/30/lessons/12903
1. 내가 작성한 코드
def solution(s):
if len(s) % 2 == 0:
return s[len(s)//2-1:len(s)//2+1]
else:
return s[len(s)//2]
문자열 슬라이싱을 이용해서 풀었슴~
'🔅코딩테스트 공부🔅 > ❗프로그래머스(Lv.1)' 카테고리의 다른 글
[프로그래머스] Level1 같은 숫자는 싫어(with python) (0) | 2023.01.29 |
---|---|
[프로그래머스] Level1 두 정수 사이의 합(with python) (0) | 2023.01.29 |
[프로그래머스] Level1 나누어 떨어지는 숫자 배열(with python) (0) | 2023.01.29 |
[프로그래머스] Level1 2016(with python) (1) | 2023.01.29 |
[프로그래머스] Level1 폰켓몬(with python) (0) | 2023.01.29 |
댓글