Language/Python

2021 - 04 - 27, Python 프로그래머스 연습문제 :: 수박수박수박수박수박수?

Cs.Woo 2021. 4. 29. 09:15
def solution(n):
    string_1 = "수박" * 100000
    return string_1[:n]

출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges

 

수박수박수박수박수박수?