C++ H-Index (1) 썸네일형 리스트형 프로그래머스 H-Index C++ 프로그래머스 : H-Index 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr - 문제 h 번 인용된 논문의 최대값을 구하는 문제다. - 풀이 #include #include #include using namespace std; int solution(vector citations) { int answer = 0; sort(citations.begin(),citations.end(),greater()); for(int i = 0; i = i + 1){ answer++; } else.. 이전 1 다음