programmers.co.kr/learn/courses/30/lessons/12922
My answer:
def solution(n):
repeat=int(n/2)
remain=n%2
answer = ''
answer+=repeat*("수박")
if remain!=0:
answer+="수"
return answer
reference code:
def water_melon(n):
s = "수박" * n
return s[:n]
'Computer Science > 알고리즘 문제풀이' 카테고리의 다른 글
[프로그래머스][python]두 개 뽑아서 더하기 (0) | 2021.12.20 |
---|---|
[프로그래머스][파이썬] 71491. 기능개발 (0) | 2021.01.19 |
[프로그래머스][python]12943. 콜라츠 추측 (0) | 2021.01.08 |
[프로그래머스][python]12915. 문자열 내 마음대로 정렬하기 (0) | 2021.01.08 |
[프로그래머스][python]12919.서울에서 김서방 찾기 (0) | 2021.01.08 |