문제 출처 https://www.acmicpc.net/problem/1213 1) console.log("I'm Sorry Hansoo"); //몸통이 여러개가 되면 불가능 ! else console.log(head.join('') + body.join('') + tail);//head와 body, tail을 합친다. Only 문제 풀이 const input= require('fs').readFileSync('/dev/stdin').toString().trim(); const arr = input.split('').sort(); const [head, body] = [[],[]]; while(arr.length){ let letter = arr.shift(); let letterIdx = arr.inde..