Lv2.(해시) 전화번호 목록 - C++
·
코딩 테스트/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/42577 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 이 문제가 왜 해쉬인지 솔직히 모르겠다. #include #include #include #include using namespace std; bool cmp(const string &a, const string &b) { return a.size() < b.size(); } bool solution(vector phone_book) { bool answer = true; sort(phone_bo..