전국 대회 선발 고사 문제
내 코드
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution {
public int solution(int[] rank, bool[] attendance) {
int answer = 0;
Dictionary<int, int> dic = new Dictionary<int, int>();
for (int i = 0; i < rank.Length; i++)
{
if (attendance[i])
dic.Add(rank[i], i);
}
List<int> list = dic.Keys.ToList();
list.Sort();
answer = dic[list[0]] * 10000 + dic[list[1]] * 100 + dic[list[2]];
return answer;
}
}
728x90
반응형
'코딩테스트_c# > 프로그래머스' 카테고리의 다른 글
프로그래머스 ) 코딩테스트 입문 - 옹알이 (1)_C# (0) | 2024.02.14 |
---|---|
프로그래머스 ) 코딩 기초 트레이닝 - 무작위로 K개의 수 뽑기_C# (0) | 2024.02.13 |
프로그래머스 ) 코딩 기초 트레이닝 - 수열과 구간 쿼리 2 _C# (0) | 2024.02.13 |
프로그래머스 ) 코딩 기초 트레이닝 - 코드 처리하기_C# (0) | 2024.02.13 |
프로그래머스 ) 코딩 기초 트레이닝 - 배열 조각하기_C# (0) | 2024.02.13 |