Skip to content

Instantly share code, notes, and snippets.

@cwdoh
Created December 9, 2016 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwdoh/958bc045b50a00cd5f16861e9ab90472 to your computer and use it in GitHub Desktop.
Save cwdoh/958bc045b50a00cd5f16861e9ab90472 to your computer and use it in GitHub Desktop.
print '1 234 56 7'
// 조건:
// 입력 없음
// 출력값: 1 234 56 7
let i = 1
[1, 3, 2, 1].map(c => { let o =''; while (c--) { o += i++ } return o }).join(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment