[C++] ํด์(Hash)
ยท
๐ Computer Science/โ Algorithm
ํด์(Hash)์ ๋ ฌ์ด ํ์ ์๊ณ ๋น ๋ฅธ ๊ฒ์์ ์ํ ๋ ํด์๋ฅผ ์ฌ์ฉํ๋ค. ๋ฌธ์ https://programmers.co.kr/learn/courses/30/lessons/42576 ์ฝ๋ฉํ
์คํธ ์ฐ์ต - ์์ฃผํ์ง ๋ชปํ ์ ์์๋ง์ ๋ง๋ผํค ์ ์๋ค์ด ๋ง๋ผํค์ ์ฐธ์ฌํ์์ต๋๋ค. ๋จ ํ ๋ช
์ ์ ์๋ฅผ ์ ์ธํ๊ณ ๋ ๋ชจ๋ ์ ์๊ฐ ๋ง๋ผํค์ ์์ฃผํ์์ต๋๋ค. ๋ง๋ผํค์ ์ฐธ์ฌํ ์ ์๋ค์ ์ด๋ฆ์ด ๋ด๊ธด ๋ฐฐ์ด participant์ ์์ฃผํ ์ ์๏ฟฝ๏ฟฝprogrammers.co.kr#include #include #include // ํด์๋งตusing namespace std;string solution(vector participant, vector completion){ string answer = "";..