문제
https://school.programmers.co.kr/learn/courses/30/lessons/42747
접근방법
간단히 풀리는 문제였다.
코드
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> citations) {
int answer = 0;
sort(citations.begin(), citations.end(), greater<>());
for (int i=0;i<citations.size();i++) {
if (citations[i] >= i + 1) answer = i + 1;
}
return answer;
}
개선할 점
..
'코딩테스트 준비 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 LV2] - 다리를 지나는 트럭(스택/큐) c++ (1) | 2024.02.15 |
---|---|
[프로그래머스] - 프로세스(스택/큐) c++ (0) | 2024.02.15 |
[프로그래머스] - 가장 큰 수(정렬) c++ (0) | 2024.02.14 |
[프로그래머스] - k번째 수(정렬) c++ (1) | 2024.02.14 |
[프로그래머스] - 베스트앨범(해시) c++ (0) | 2024.02.14 |