728x90
https://school.programmers.co.kr/learn/courses/30/lessons/42747
소스코드
using System;
using System.Linq;
public class Solution
{
public int solution(int[] citations)
{
int answer = 0;
citations = citations.OrderByDescending(o => o).ToArray();
for (int i = 0; i < citations.Length; i++)
{
if (i + 1 <= citations[i])
answer++;
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 주사위 게임 2 C++ (set의 활용 (0) | 2023.08.04 |
---|---|
[프로그래머스]Lv.0 등차수열의 특정한 항만 더하기C++ (0) | 2023.08.04 |
[프로그래머스]Lv.2 행렬의 곱셈 C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 JadenCase 문자열 만들기 C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 피보나치 수 C#(재귀) (0) | 2023.08.04 |