문제 : 수박수박수박수박수박수?(프로그래머스)
def solution(n): return '수박'*(n//2) + '수'*(n%2)
function solution(n) {return '수박'.repeat(n/2).concat('수'.repeat(n%2));}
def solution(n):return ("수박" * (n//2+1))[:n]