19 Sat
์๋ฐ์๋ฐ์๋ฐ์๋ฐ์๋ฐ์
'''
https://programmers.co.kr/learn/courses/30/lessons/12922
์๋ฐ์๋ฐ์๋ฐ์๋ฐ์๋ฐ์?
[ํ์ด]
1. n๋งํผ "์", "๋ฐ" ์ถ๋ ฅ
2. join, slice
'''
def solution(n):
answer = "์๋ฐ" * (n // 2 + 1)
return answer[:n]
'''
'''
Last updated
Was this helpful?