알고리즘/프로그래머스
Programers H-Index
https://programmers.co.kr/learn/courses/30/lessons/42747 코딩테스트 연습 - H-Index H-Index는 과학자의 생산성과 영향력을 나타내는 지표입니다. 어느 과학자의 H-Index를 나타내는 값인 h를 구하려고 합니다. 위키백과1에 따르면, H-Index는 다음과 같이 구합니다. 어떤 과학자가 발표 programmers.co.kr 프로그래머스 H-Index 문제입니다. #include #include #include using namespace std; int solution(vector citations) { int answer = 0; sort(citations.begin(),citations.end()); for(int i =0;i result = 3..
2022. 3. 12.