728x90
반복문 + sort 를 이용해서 풀려고 하다가... 어차피 상황이 3개로밖에 안나뉘는 것 같아서 그냥 객체로 처리
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim();
const result = {
'1 2 3 4 5 6 7 8': 'ascending',
'8 7 6 5 4 3 2 1': 'descending'
}[input];
console.log(result || 'mixed')
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 10039 Node.js (0) | 2022.09.21 |
---|---|
[백준] 8958 Node.js (0) | 2022.09.21 |
[백준] 2675 Node.js (0) | 2022.09.21 |
[백준] 10757 Node.js (0) | 2022.09.21 |
[백준] 14623 Node (0) | 2022.09.20 |
댓글