티스토리 뷰
https://www.acmicpc.net/problem/1159
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split('\n').map(v => v.trim());
const player = input.slice(1,);
let head = {};
const answer = [];
player.forEach(v => {
const firstAlpah = v[0];
if (head.hasOwnProperty(firstAlpah)) {
head[firstAlpah]++;
} else {
head[firstAlpah] = 1;
}
})
for (let key in head) {
const value = head[key]
if (value >= 5) {
answer.push(key)
}
}
if (answer.length == 0) {
console.log('PREDAJA')
} else {
console.log(answer.sort().join(''))
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 9996번 : 한국이 그리울 땐 서버에 접속하지 (0) | 2022.03.07 |
---|---|
Node.js) 백준 11655번 : ROT13 (0) | 2022.03.06 |
Node.js) 백준 10988번: 팰린드롬인지 확인하기 (0) | 2022.03.06 |
Node.js) 백준 2979번: 트럭 주차 (0) | 2022.03.06 |
Node.js) 백준 10808번: 알파벳 개수 (0) | 2022.03.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- BFS
- 서버개발
- 그래프
- 다이나믹프로그래밍
- 면접비
- 다이나밍프로그래밍
- 투포인터
- 롱베케이션
- 투포인터 연습
- create db
- node.js
- create databases;
- 서버점검
- 최소공통조상
- MySQL
- 면접질문
- MOD
- 로드나인
- DB 생성
- 개발자면접
- 은둔청년체험
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함