해시(2)
-
[ 프로그래머스 ] 전화번호 목록 C++ 해시
문제 설명 문제 풀이 #include #include using namespace std; bool solution(vector phone_book) { bool answer = true; for(int i=0; i
2020.01.04 -
[ 프로그래머스 ] 완주하지 못한 선수 C++ 해시
문제 설명 문제 풀이 #include #include #include using namespace std; string solution(vector participant, vector completion) { sort(participant.begin(), participant.end()); sort(completion.begin(), completion.end()); for(int i=0; i
2019.12.30