C# 알고리즘 - n번째 원소부터
작성자 정보
- 마스터 작성
- 작성일
본문
[문제 설명]
정수 리스트 num_list와 정수 n이 주어질 때, n 번째 원소부터 마지막 원소까지의 모든 원소를 담은 리스트를 return하도록 solution 함수를 완성해주세요.
[제한사항]
2 ≤ num_list의 길이 ≤ 30
1 ≤ num_list의 원소 ≤ 9
1 ≤ n ≤ num_list의 길이
[입출력 예]
[입출력 예 설명]
입출력 예 #1
[2, 1, 6]의 세 번째 원소부터 마지막 원소까지의 모든 원소는 [6]입니다.
입출력 예 #2
[5, 2, 1, 7, 5]의 두 번째 원소부터 마지막 원소까지의 모든 원소는 [2, 1, 7, 5]입니다.
[코드]
using System;
public class Solution {
public int[] solution(int[] num_list, int n) {
int[] answer = new int[num_list.Length - n + 1];
int num = 0;
for(int i = n - 1; i< num_list.Length; i++)
{
answer[num++] = num_list[i];
}
return answer;
}
}
[풀이]
1.배열크기 설정 및 변수 선언
int[] answer = new int[num_list.Length - n + 1];
int num = 0;
2.for문 돌리기
for(int i = n - 1; i< num_list.Length; i++)
{
answer[num++] = num_list[i];
}
[주소]
https://school.programmers.co.kr/learn/courses/30/lessons/181892
해당 알고리즘 문제는 프로그래머스의 알고리즘 문제입니다.
관련자료
-
이전
-
다음