티스토리 뷰
https://www.acmicpc.net/problem/28432
const input = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.trim());
const N = +input.shift();
const words = [];
let Q;
for (let i = 0; i < N; i++) {
const word = input.shift();
words.push(word);
if (word == '?') Q = i;
}
let front = '';
if (Q > 0) {
front = words[Q - 1].split('').pop();
}
let rear = '';
if (Q + 1 < words.length) {
rear = words[Q + 1].split('').shift();
}
const M = +input.shift();
for (let i = 0; i < M; i++) {
const possible = input.shift();
if (words.includes(possible)) continue;
if (possible.startsWith(front) && possible.endsWith(rear)) {
console.log(possible);
break;
}
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 28444번: HI-ARC=? (0) | 2023.08.14 |
---|---|
Node.js) 백준 28438번: 행렬 연산 (행렬 계산하기) (0) | 2023.08.13 |
Node.js) 백준 28431번: 양말 짝 맞추기 (0) | 2023.08.13 |
Node.js) 백준 28702번: FizzBuzz (0) | 2023.08.13 |
Node.js) 백준 28701번: 세제곱의 합 (0) | 2023.08.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 투포인터 연습
- 개발자면접
- 다이나믹프로그래밍
- 은둔청년체험
- create db
- DB 생성
- MOD
- BFS
- create databases;
- 다이나밍프로그래밍
- 최소공통조상
- node.js
- MySQL
- 로드나인
- 서버개발
- 동적프로그래밍
- 면접비
- 롱베케이션
- 면접질문
- 그래프
- 투포인터
- 서버점검
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함