[프로그래머스] 수박수박수박수박수박수? (JS)

hhkim·2023년 6월 22일
0

Algorithm - JavaScript

목록 보기
22/188
post-thumbnail

풀이 과정

  1. '수박'을 n / 2만큼 반복: repeat()
  2. 홀수면 1의 결과에 '수' 더하기: + 연산자

코드

function solution(n) {
  return '수박'.repeat(Math.floor(n / 2)) + (n % 2 ? '수' : '');
}

0개의 댓글