티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/12981
[프로그래머스][C++] 영어 끝말잇기
#include <string>
#include <vector>
#include <iostream>
#include <map>
using namespace std;
vector<int> solution(int n, vector<string> words) {
map<string, int> map;
map[words[0]]++;
for (int i = 1; i < words.size(); i++) {
if (map[words[i]] || words[i].front() != words[i - 1].back())
return { (i % n) + 1,(i / n) + 1 };
map[words[i]]++;
}
return { 0,0 };
}
'Problem Solving' 카테고리의 다른 글
[백준][C++] 1913 달팽이 (0) | 2022.06.07 |
---|---|
[프로그래머스][C++] 게임 맵 최단거리 (0) | 2022.06.04 |
[프로그래머스][C++] 예상 대진표 (0) | 2022.05.31 |
[백준][C++] 15655 N과 M (6) (0) | 2022.05.27 |
[백준][C++] 15654 N과 M (5) (0) | 2022.05.27 |
댓글