[프로그래머스] 파일명 정렬
2021. 3. 10. 03:02
2018 KAKAO BLIND RECRUITMENT [3차] 파일명 정렬 문제 링크 programmers.co.kr/learn/courses/30/lessons/17686 코딩테스트 연습 - [3차] 파일명 정렬 파일명 정렬 세 차례의 코딩 테스트와 두 차례의 면접이라는 기나긴 블라인드 공채를 무사히 통과해 카카오에 입사한 무지는 파일 저장소 서버 관리를 맡게 되었다. 저장소 서버에는 프로그램 programmers.co.kr C++ 풀이 #include #include #include #include using namespace std; struct separated_names { string HEAD, ORIGINAL_NAME; int NUMBER; }; bool cmp(separated_names a..