C# 알고리즘 - 뒤에서 5등까지
작성자 정보
- 마스터 작성
- 작성일
본문
[문제 설명]
정수로 이루어진 리스트 num_list가 주어집니다. num_list에서 가장 작은 5개의 수를 오름차순으로 담은 리스트를 return하도록 solution 함수를 완성해주세요.
[제한사항]
6 ≤ num_list의 길이 ≤ 30
1 ≤ num_list의 원소 ≤ 100
[입출력 예]
[입출력 예 설명]
입출력 예 #1
[12, 4, 15, 46, 38, 1, 14]를 정렬하면 [1, 4, 12, 14, 15, 38, 46]이 되고, 앞에서 부터 5개를 고르면 [1, 4, 12, 14, 15]가 됩니다.
[코드]
using System;
public class Solution {
public int[] solution(int[] num_list) {
int[] answer = new int[5];
Array.Sort(num_list);
for(int i=0; i<5; i++)
{
answer[i] = num_list[i];
}
return answer;
}
}
[풀이]
1.answer의 크기 설정
int[] answer = new int[5];
2.매개변수를 정렬하기
Array.Sort(num_list);
3.for문 돌리고 값 넣기
for(int i=0; i<5; i++)
{
answer[i] = num_list[i];
}
[주소]
https://school.programmers.co.kr/learn/courses/30/lessons/181853
해당 알고리즘 문제는 프로그래머스의 알고리즘 문제입니다.
관련자료
-
이전
-
다음